19 lines
376 B
Plaintext
19 lines
376 B
Plaintext
void main()
|
|
{
|
|
ExecuteScript("nw_c2_default7", OBJECT_SELF);
|
|
ExecuteScript("tab_xpscript",OBJECT_SELF);
|
|
object oPC = GetLastKiller();
|
|
|
|
object oTarget;
|
|
object oSpawn;
|
|
location lTarget;
|
|
oTarget = GetWaypointByTag("WP_PHWPORTAL");
|
|
|
|
lTarget = GetLocation(oTarget);
|
|
|
|
oSpawn = CreateObject(OBJECT_TYPE_PLACEABLE, "phwportal", lTarget);
|
|
|
|
DestroyObject(oSpawn, 300.0);
|
|
}
|
|
|