Advertisement
dradra1

eriks

Dec 17th, 2023
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. mon= peripheral.wrap("left")
  2. oldterm = term.redirect(mon)
  3.  
  4. while true do
  5.  
  6. term.setBackgroundColor(colors.black)
  7. term.clear()
  8. img=paintutils.loadImage("1")
  9. paintutils.drawImage(img,1,1)
  10. os.sleep(1)
  11.  
  12. term.setBackgroundColor(colors.black)
  13. term.clear()
  14. img=paintutils.loadImage("2")
  15. paintutils.drawImage(img,1,1)
  16. os.sleep(1)
  17.  
  18. term.setBackgroundColor(colors.black)
  19. term.clear()
  20. img=paintutils.loadImage("3")
  21. paintutils.drawImage(img,1,1)
  22. os.sleep(1)
  23.  
  24. term.setBackgroundColor(colors.black)
  25. term.clear()
  26. img=paintutils.loadImage("4")
  27. paintutils.drawImage(img,1,1)
  28. os.sleep(1)
  29.  
  30. end
Tags: RTS
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement