11 lines
172 B
Plaintext
11 lines
172 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC = GetEnteringObject();
|
||
|
if(GetIsPC(oPC)) {
|
||
|
AssignCommand(oPC, JumpToObject(GetWaypointByTag("RUINS_3RD_1")));
|
||
|
}
|
||
|
else {
|
||
|
//Do Nothing
|
||
|
}
|
||
|
}
|