13 lines
229 B
Plaintext
13 lines
229 B
Plaintext
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
object oNPC = OBJECT_SELF;
|
||
|
|
||
|
string sWarp1 = GetLocalString(oNPC, "sWarp1");
|
||
|
object oWarp1 = GetWaypointByTag(sWarp1);
|
||
|
|
||
|
AssignCommand(oPC, ActionJumpToLocation(GetLocation(oWarp1)));
|
||
|
|
||
|
}
|