12 lines
285 B
Plaintext
12 lines
285 B
Plaintext
// Port PC
|
|
///////////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
object oPC = GetLastUsedBy(); // Get the user of the object
|
|
object oDest = GetObjectByTag("ROPE1"); // way point tag.
|
|
if(GetIsPC(oPC))
|
|
{
|
|
AssignCommand(oPC,JumpToObject(oDest));
|
|
}
|
|
}
|