29 lines
665 B
Plaintext
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));
|
|
}
|