REO-EE/_module/nss/startwarp1.nss

13 lines
229 B
Plaintext
Raw Normal View History

2024-02-22 13:22:03 -05:00
void main()
{
object oPC = GetPCSpeaker();
object oNPC = OBJECT_SELF;
string sWarp1 = GetLocalString(oNPC, "sWarp1");
object oWarp1 = GetWaypointByTag(sWarp1);
AssignCommand(oPC, ActionJumpToLocation(GetLocation(oWarp1)));
}