Advertisement
Guest User

Untitled

a guest
Jan 31st, 2015
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. if (($coord == 'E1') && ($command == "north") && ($switch == true)){$desc = $death; echo $deathresult; echo $fall; $switch = false;}
  2. if (($coord == 'E1') && ($command == "south") && ($switch == true)){$coord = 'E2'; $desc = $e2; $switch = false;}
  3. if (($coord == 'E1') && ($command == "west") && ($switch == true)){$coord = 'D1'; $desc = $d1; $switch = false;}
  4. if (($coord == 'E1') && ($command == "east") && ($switch == true)){$desc = $e1; echo $unable; $switch = false;}
  5. if (($coord == 'E1') && ($command == "melt ice") && ($matchlamp == 1) && ($teleporter == 0) && ($switch == true)){$desc = "You have melted the ice and you can now collect your prize... A <font color='green'>teleporter</font>? Wow. Strange. You better pick it up.<br>"; $ice = $ice + 1; $switch = false;}
  6. if (($coord == 'E1') && ($command == "melt ice") && ($matchlamp == 1) && ($teleporter == 1) && ($switch == true)){$desc = "You have already melted the ice and collected the <font color='green'>teleporter</font>.<br>"; $switch = false; echo $backpage;}
  7. if (($coord == 'E1') && ($command == "melt ice") && ($matchlamp == 1) && ($teleporter == 2) && ($switch == true)){$desc = "You have already melted the ice, collected the <font color='green'>teleporter</font>, and used it.<br>"; $switch = false; echo $backpage;}
  8. if (($coord == 'E1') && ($command == "melt ice") && ($matchlamp != 1) && ($switch == true)){$desc = "Aye, you're gunna need something that can melt through the ice first... Something hot...<br>"; $switch = false;}
  9. if (($coord == 'E1') && ($command == "break ice") && ($switch == true)){echo "Well, I certainly don't believe you can just easily break ice, even with strong equipment. I think it would be best to melt it.<br>"; $desc = $e1; $switch = false;}
  10. if (($coord == 'E1') && ($command == "pick up teleporter") && ($ice == 1) && ($teleporter == 0) && ($switch == true)){$desc = $e1; echo "You got the teleporter! Type 'use teleporter' in the command bar to see what it does... hmm... I wonder..<br>"; $teleporter = $teleporter + 1; $switch = false;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement