Page 1 of 1

What does this mean?

Posted: Wed Jan 12, 2022 4:18 pm
by TheGameyFireBro105
Image

Image

Re: What does this mean?

Posted: Wed Jan 12, 2022 4:33 pm
by deice
if you need help with lua you're writing, you should probably also post the code itself to make it possible to debug.

if you want to know about the error itself, the gist is that lua has tables within which you can associate one value with another. it also has "nil", a special value different from the numerical 0 which signifies the lack of a value. this error happens when a nil value is attempted to be used as a table.

if it's being raised from a library (like in the screenshot) it's likely that something didn't load correctly or something is missing from your code.

Re: What does this mean?

Posted: Wed Jan 12, 2022 7:03 pm
by Hoeloe
This looks like an error that can occur when you have a custom effect file and no corresponding graphic.

Re: What does this mean?

Posted: Thu Jan 13, 2022 1:02 pm
by TheGameyFireBro105
fixed it.