13 lines
210 B
Plaintext
13 lines
210 B
Plaintext
void main()
|
|
{
|
|
object oPC = GetEnteringObject();
|
|
if (GetIsDM(oPC)){
|
|
return;
|
|
}
|
|
if (!GetIsPC(oPC)){
|
|
return;
|
|
}
|
|
location loc = GetLocation(GetWaypointByTag("swim"));
|
|
AssignCommand(oPC, ActionJumpToLocation(loc));
|
|
}
|