Advertisement
Guest User

Untitled

a guest
Oct 13th, 2015
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. if matches[2] ~= "purple" then
  2.  
  3. report("Push over the "..matches[2].." vat!")
  4. if matches[2] == "red" then
  5. msend("push 186633")
  6. elseif matches[2] == "blue" then
  7. msend("push 186473")
  8. elseif matches[2] == "green" then
  9. msend("push 186763")
  10. end
  11. for i=1,#phoenix.items.room_items do
  12. if phoenix.items.room_items[i]["name"] == "a vat of a strange "..matches[2].." liquid" then
  13. report("Push over vat"..phoenix.items.room_items[i]["id"])
  14. msend("push "..phoenix.items.room_items[i]["id"])
  15. break
  16. end
  17. end
  18.  
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement