9 lines
278 B
Plaintext
9 lines
278 B
Plaintext
|
void main()
|
||
|
{
|
||
|
ActionSpeakString("I BANISH YOU TO THE ABYSS!", TALKVOLUME_SHOUT);
|
||
|
object oPC = GetLastAttacker();
|
||
|
object oTarget = GetWaypointByTag("TheAbyss"); //or whatever the tag is for your destination waypoint
|
||
|
AssignCommand(oPC, JumpToObject(oTarget));
|
||
|
}
|
||
|
|