Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- A ComputerCraft program for a match scoreboard (ex. Handball match), to keep track and show the crowd the result
- -- Couldn't figure out how to use "print" instead of "write" cause it would have looked better...
- -- You can freely modify this code as you wish :)
- -- Author: BobbyB33
- x1=0
- x2=0
- while true do
- mon=peripheral.wrap("top")
- mon.clear()
- mon.setCursorPos(8,1)
- mon.setTextScale(1.5)
- mon.write("SuperForm "..x1)
- mon.setCursorPos(8,5)
- mon.write("Karprensi "..x2)
- input=read()
- if input=="h" then
- x1=x1+1
- else
- if input=="a" then
- x2=x2+1
- end
- end
- end
- elseif x2=5 then
- mon.clear()
- mon.setCursorPos(8.4)
- mon.write("Winner is Karprensi")
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement