Advertisement
EliteGaming

Tank

Aug 10th, 2014
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local drum = peripheral.wrap("drum_0")
  2. local m = peripheral.wrap("monitor_0")
  3.  
  4. m.setTextColor(colors.green)
  5. m.setTextScale(1.6)
  6.  
  7. while true do
  8. m.clear()
  9. m.setCursorPos(1,1)
  10. tableInfo = drum.getTankInfo("west")
  11. currentAmount = tableInfo[1].amount
  12. m.write("Current Essence Stored")
  13. m.setCursorPos(5,3)
  14. m.write(currentAmount.." ML")
  15. sleep(0.3)
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement