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