I can't understand this glon error and how to fix it
2 replies, posted
[@lua\includes\modules\glon.lua:349] Unknown type ID, 116!
I'm trying to encode and decode a table.
like this
table.poop
table.crap
glon.encode(table)
but it isn't working.
i also have
require("glon")
:confused:
Can you post the contents of the table you're trying to encode?
[code]PrintTable(t);[/code]
Most likely you're trying to encode something that can't be encoded, like a function.
And if you're trying to glon encode the variable "table", then you're trying to encode every function on the variable "table", like table.insert, so it'll fail.
Sorry, you need to Log In to post a reply to this thread.