LoD_PRC8/_module/nss/to_arena.nss
Jaysyn904 94990edc60 Initial Upload
Initial Upload
2023-09-21 21:20:34 -04:00

29 lines
665 B
Plaintext

//:://////////////////////////////////////////////////
//:: to_arena
//:: Drake Portal to the Arena
/*
Protal to the Arena
*/
//:://////////////////////////////////////////////////
//:: Created By: r3plica
//:: Created On: 21/10/2004
//:://////////////////////////////////////////////////
void main()
{
location lTarget;
object oTarget;
object oPC = GetLastUsedBy();
oTarget = GetWaypointByTag("ba_arefev");
lTarget = GetLocation(oTarget);
if (!GetIsPC(oPC)) return;
AssignCommand(oPC, ClearAllActions());
if (GetAreaFromLocation(lTarget)==OBJECT_INVALID) return;
AssignCommand(oPC, ActionJumpToLocation(lTarget));
}