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