Advertisement
Guest User

startup

a guest
Dec 29th, 2012
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.57 KB | None | 0 0
  1. term.clear()
  2. term.setCursorPos(21,1)
  3. print("Games: ")
  4. term.setCursorPos(21,5)
  5. print("Slots")
  6. term.setCursorPos(21,7)
  7. print("Dice")
  8. term.setCursorPos(21,9)
  9. print("War")
  10. term.setCursorPos(1,12)
  11. print("Type the game you want: ")
  12. g = read()
  13. if  g == "Slots" then
  14. shell.run("Slots")
  15. elseif g == ("slots") then
  16. shell.run("Slots")
  17. elseif g == "Dice" then
  18. shell.run("Dice")
  19. elseif g == "dice" then
  20. shell.run("Dice")
  21. elseif g == "War" then
  22. shell.run("War")
  23. elseif g == "war" then
  24. shell.run("War")
  25. else
  26. print("That game doesn't exist.")
  27. sleep(2.7)
  28. os.reboot()
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement