11 lines
258 B
Plaintext
11 lines
258 B
Plaintext
#include "nw_i0_henchman"
|
|
void main()
|
|
{
|
|
object oPC = GetMaster(OBJECT_SELF);
|
|
SetFormerMaster(oPC, OBJECT_SELF);
|
|
RemoveHenchman(oPC);
|
|
SetIsDestroyable(TRUE, FALSE, FALSE);
|
|
SetImmortal(OBJECT_SELF, FALSE);
|
|
DestroyObject(OBJECT_SELF);
|
|
}
|