Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- mon.clear()
- tank = peripheral.wrap("left")
- mon = peripheral.wrap("back")
- amount = tank.getStored().amount
- while true do
- mon.setCursorPos(1,1)
- mon.setTextColor(colors.lightBlue)
- mon.write("Kerose.")
- mon.setCursorPos(1,3)
- mon.setTextColor(colors.white)
- mon.clearLine(1,3)
- formattedStored = string.format("%.1f",amount/1000)
- mon.write(formattedStored.."mB")
- sleep(1)
- end
Advertisement
Add Comment
Please, Sign In to add comment