14 lines
232 B
Plaintext
14 lines
232 B
Plaintext
void main()
|
|
{
|
|
object oPC = GetLastUsedBy();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
AssignCommand(oPC, ClearAllActions());
|
|
|
|
object oTarget;
|
|
oTarget = GetWaypointByTag("WP_RUINSHIDDENDOOR2");
|
|
|
|
AssignCommand(oPC, ActionJumpToObject(oTarget));
|
|
}
|