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