• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Widget UI graph issue

Afelipe

Member
Joined
Sep 17, 2013
Messages
46
Solutions
1
Reaction score
6
I've been getting this message in the client terminal and I have no idea where it could be coming from. Can anyone help figure it out? The message is much longer, but its essentially the same warnings over and over.

Code:
WARNING: [UIGraph::addValue (widget17244)] Graph of index 0 out of bounds.
WARNING: [UIGraph::addValue (widget17254)] Graph of index 0 out of bounds.
WARNING: [UIGraph::addValue (widget17268)] Graph of index 0 out of bounds.
WARNING: [UIGraph::addValue (widget17302)] Graph of index 0 out of bounds.
WARNING: [UIGraph::addValue (widget17314)] Graph of index 0 out of bounds.
WARNING: [UIGraph::addValue (widget17244)] Graph of index 0 out of bounds.
WARNING: [UIGraph::addValue (widget17254)] Graph of index 0 out of bounds.
WARNING: [UIGraph::addValue (widget17268)] Graph of index 0 out of bounds.
WARNING: [UIGraph::addValue (widget17302)] Graph of index 0 out of bounds.
WARNING: [UIGraph::addValue (widget17314)] Graph of index 0 out of bounds.
WARNING: [UIGraph::addValue (widget17244)] Graph of index 0 out of bounds.
WARNING: [UIGraph::addValue (widget17254)] Graph of index 0 out of bounds.
WARNING: [UIGraph::addValue (widget17268)] Graph of index 0 out of bounds.
WARNING: [UIGraph::addValue (widget17302)] Graph of index 0 out of bounds.
WARNING: [UIGraph::addValue (widget17314)] Graph of index 0 out of bounds.
WARNING: [UIGraph::addValue (widget17244)] Graph of index 0 out of bounds.
WARNING: [UIGraph::addValue (widget17254)] Graph of index 0 out of bounds.
WARNING: [UIGraph::addValue (widget17268)] Graph of index 0 out of bounds.
WARNING: [UIGraph::addValue (widget17302)] Graph of index 0 out of bounds.
WARNING: [UIGraph::addValue (widget17314)] Graph of index 0 out of bounds.

Thanks
 
One of your module Lua scripts is trying to call the addValue method on a UIGraph that no longer exists. (or the index specified is larger than the total amount of graphs)

The best thing to do is to scan your entire modules directory for "addValue", and from there debug to figure out what is responsible. Perhaps, it's a future event trying to apply the method to something that has been removed already etc.
 
Last edited:
One of your module Lua scripts is trying to call the addValue method on a UIGraph that no longer exists. (or the index specified is larger than the total amount of graphs)

The best thing to do is to scan your entire modules directory for "addValue", and from there debug to figure out what is responsible. Perhaps, it's a future event trying to apply the method to something that has been removed already etc.
Thank you for your reply. Ill do that.
 
Back
Top