8 lines
185 B
Plaintext
8 lines
185 B
Plaintext
|
void main()
|
||
|
{
|
||
|
int nHPOnExit = GetCurrentHitPoints(OBJECT_SELF);
|
||
|
string sVarName = "s"+GetTag(OBJECT_SELF);
|
||
|
object oModule = GetModule();
|
||
|
SetLocalInt (oModule, sVarName, nHPOnExit);
|
||
|
}
|