16 lines
247 B
Plaintext
16 lines
247 B
Plaintext
|
void main()
|
||
|
{
|
||
|
|
||
|
//get the pc who used the trapdoor
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
//get the target waypoint destination
|
||
|
object oDrop = GetWaypointByTag("immortalgear");
|
||
|
|
||
|
//jump the PC to the destination
|
||
|
AssignCommand (oPC,JumpToObject(oDrop));
|
||
|
|
||
|
|
||
|
|
||
|
}
|