Posted 20 September 2015 - 01:48 PM
this code throws this error - bios14: [string "startup"]:8: '=' expected
is it just me that is in need of new glasses, or what did i do wrong??
local mon = peripheral.wrap("monitor_0")
local tank = peripheral.wrap("rcsteeltankvalvetile_0")
local infoTank = tank.getTankInfo()
local tankContent = infoTank[1].contents.rawName
local tankAmount = infoTank[1]contents.amount
while true do
mon.clear()
mon.setCursorPos(1,1)
mon.write("Steel Tank 1: "..tankAmount.." "..tankContent)
sleep(2)
end
is it just me that is in need of new glasses, or what did i do wrong??