Bomb Bloke, on 07 April 2016 - 12:28 AM, said:
Ok well i still done understand, let me explain so you full understand and can help
Im using MFR spawner with networking cable to get the name of the mob in the safari net, the code im using atm to get the data is
for i,v in ipairs(peripheral.getMethods("powered_tile_0"))
do print(i..". "..v)
end
sp = peripheral.wrap("powered_tile_0")
local test = textutils.serialize(sp.getStackInSlot(1))
print(test)
In which returns this
http://imgur.com/b8FwAGO
when looking at the forum post you linked i tried this
local test = textutils.serialize(sp.getStackInSlot(1))
print(test[2].captured)
However all this did was "attempt to index ? (a nil value) I really dont understand, i have never done this kind of work with tables before