Advertisement
Scorpionh

Discothèque gay

Aug 1st, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.52 KB | None | 0 0
  1. m = peripheral.wrap("top")
  2. m.clear()
  3. v = 4
  4. u = 2
  5. n = 1
  6. a = 3
  7. while true do
  8. m.setTextScale(1)
  9. m.setBackgroundColor(u)
  10. m.setTextColor(v)
  11. m.setCursorPos(1,2)
  12. m.write("Keukou WAZA")
  13. m.setCursorPos(n,4)
  14. m.write("Suces-tu keuhchonne ?")
  15. m.setCursorPos(1,6)
  16. m.write("Que puis je faire pour vous monsieur ?")
  17. m.setCursorPos(a,10)
  18. m.write("<3")
  19. n = n+1
  20. a = a+1
  21. v = 2*v
  22. u = 2*u
  23. if u > 32767 then
  24. u = 2
  25. end
  26. if v > 32767 then
  27. v = 2
  28. end
  29. if n > 34 then
  30. n = 1
  31. end
  32. if a > 34 then
  33. a = 1
  34. end
  35. sleep(0,8)
  36. m.clear()
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement