11 lines
313 B
Plaintext
11 lines
313 B
Plaintext
|
// Module : OnClientLeave by Brian "spilth" Kelly
|
||
|
// For Neverwinter Nights - Bleeding Tutorial
|
||
|
|
||
|
#include "bleeding_config"
|
||
|
|
||
|
void main() {
|
||
|
// Remember what their hit points were at for when they next sign on...
|
||
|
SetLocalInt(GetExitingObject(), "LastHitPoints", GetCurrentHitPoints(GetExitingObject()));
|
||
|
|
||
|
}
|