Advertisement
Guest User

match

a guest
Sep 11th, 2013
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.67 KB | None | 0 0
  1. -- A ComputerCraft program for a match scoreboard (ex. Handball match), to keep track and show the crowd the result
  2. -- Couldn't figure out how to use "print" instead of "write" cause it would have looked better...
  3. -- You can freely modify this code as you wish :)
  4. -- Author: BobbyB33
  5.  
  6. x1=0
  7. x2=0
  8. while true do
  9. mon=peripheral.wrap("top")
  10. mon.clear()
  11. mon.setCursorPos(8,1)
  12. mon.setTextScale(1.5)
  13. mon.write("SuperForm  "..x1)
  14. mon.setCursorPos(8,5)
  15. mon.write("Karprensi   "..x2)
  16.  
  17. input=read()
  18. if input=="h" then
  19. x1=x1+1
  20. else
  21. if input=="a" then
  22. x2=x2+1
  23. end
  24. end
  25. end
  26.  
  27. elseif x2=5 then  
  28. mon.clear()
  29. mon.setCursorPos(8.4)
  30. mon.write("Winner is Karprensi")
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement