9 lines
217 B
Plaintext
9 lines
217 B
Plaintext
// This script makes the player jump to lizard marsh
|
|
// when he uses the pull chain
|
|
|
|
void main()
|
|
{
|
|
object oPlayer = GetLastUsedBy();
|
|
AssignCommand(oPlayer, ActionJumpToObject(GetObjectByTag("WPTrapDoorLM")));
|
|
}
|