27 lines
416 B
Plaintext
27 lines
416 B
Plaintext
|
|
void main()
|
|
{
|
|
|
|
PlayVoiceChat(VOICE_CHAT_GOODBYE);
|
|
|
|
|
|
SetPlotFlag(OBJECT_SELF,FALSE);
|
|
SetImmortal(OBJECT_SELF, FALSE);
|
|
SetIsDestroyable(TRUE, FALSE, FALSE);
|
|
DestroyObject(OBJECT_SELF, 0.2);
|
|
|
|
|
|
object oTarget;
|
|
|
|
|
|
object oSpawn;
|
|
location lTarget;
|
|
oTarget = GetWaypointByTag("WP_HRESPAWN_ISANG");
|
|
|
|
lTarget = GetLocation(oTarget);
|
|
|
|
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "isang", lTarget);
|
|
|
|
}
|
|
|