Posted 22 November 2012 - 03:37 PM
svr:150: attempt to perform arithmetic__add on table and string
I have no idea what this means.
Notes:
- Table connected was initialized.
- The value of [target] is initialized before this as a table.
--Line 150
sendMessage(ssender, v + ", ", true)
--The function
local function sendMessage(target, message, noprint)
if connected[target].name ~= nil then
if noprint == nil or noprint == true then
rednet.send(connected[target].id, "{msg-write} {"..message.."}")
else
rednet.send(connected[target].id, "{msg-print} {"..message.."}")
end
end
end
I have no idea what this means.
Notes:
- Table connected was initialized.
- The value of [target] is initialized before this as a table.