07-20-2016, 04:32 AM
This is gonna kill ya.
I have a copy of ATOA's system, including that particular add-on. Even without FONTZ... *BOOM*, I get an error in that particular method you just posted. It is faulty.
When passing the custom commands into the window that renders them for the status menu, it passes an extra 'nil' value. Um, that's the nil that cannot be turned into a string. Yawwwwn. To fix this, go up to line 622 in the Individual Commands script which reads:
and make it
Again, this is not XaiL related. Mebby make a new thread
I have a copy of ATOA's system, including that particular add-on. Even without FONTZ... *BOOM*, I get an error in that particular method you just posted. It is faulty.
When passing the custom commands into the window that renders them for the status menu, it passes an extra 'nil' value. Um, that's the nil that cannot be turned into a string. Yawwwwn. To fix this, go up to line 622 in the Individual Commands script which reads:
Code:
for i in 0...@item_max
Code:
for i in 0...@item_max-1
Again, this is not XaiL related. Mebby make a new thread