Posted 16 March 2014 - 11:59 AM
Hi guys, I got a small problem that bother me very much, every time i use textutils.serialize or textutils.unserialize in my programs my computer begins to act strange.
Here is an example code: (program name send)
rednet.open(modemSide)
local receiverID = 4
t = {}
for i=1,15 do
t = "hello world"
end
table = textutils.serialize(t)
rednet.send(4, table)
The program work just fine but when i execute it but when i do: "edit send" i get this error: edit:53: attempt to call nil.
I'm beginning to suspect a minor error :/
Would really appriciate some help on this one :)/>
Here is an example code: (program name send)
Spoiler
local modemSide = "top"rednet.open(modemSide)
local receiverID = 4
t = {}
for i=1,15 do
t = "hello world"
end
table = textutils.serialize(t)
rednet.send(4, table)
The program work just fine but when i execute it but when i do: "edit send" i get this error: edit:53: attempt to call nil.
I'm beginning to suspect a minor error :/
Would really appriciate some help on this one :)/>