nomore32 0 Posted March 29 Share Posted March 29 I tried to use the peripherals code to connect the monitor to the block and now i dont know how to get the data from the block. i tried : local inv = peripheral.find("item_storage") print(inv) Outcome: table: 5981ace Please Help me Quote Link to post Share on other sites
0 iovoid 0 Posted August 6 Share Posted August 6 "peripheral.find" is ComputerCraft stuff. I have not messed with CC for long time and can't find information about "item_storage". Perhaps look at contents of table you get in "inv"? for k, v in pairs(inv) do print(tostring(k).." = "..tostring(v)) end Quote Link to post Share on other sites
I tried to use the peripherals code to connect the monitor to the block and now i dont know how to get the data from the block.
i tried :
local inv = peripheral.find("item_storage")
print(inv)
Outcome:
table: 5981ace
Please Help me
Link to post
Share on other sites