Random Error - Missing skeleton?

09/14/2023 13:45 WillekeurigeTrader#1
Hi!

I've got a random error I encounter randomly from time to time. When running my bot I can get the error randomly, sometimes after a few hours and sometimes it runs smoothly for 24 hours.
Not sure what the problem is or could be, anyone had this problem before or got any suggestions as to what it might be?

Thanks in advance!

The Error / Guild Wars crash:
-> Error Logs <--*
(2) Client pathing data out of sync with server. You may observe your character 'warping' during movement.
(1) Composite: Missing skeleton [race 0, sex 0, profession 0]
(1) Composite: Substituting [race 0, sex 0, profession 1]

Assertion: index < m_count
p:\code\base\rtl\array.h(574)
App: Gw.exe
Flags: 0
09/14/2023 17:47 Mrjambix#2
Quote:
Originally Posted by WillekeurigeTrader View Post
Hi!

I've got a random error I encounter randomly from time to time. When running my bot I can get the error randomly, sometimes after a few hours and sometimes it runs smoothly for 24 hours.
Not sure what the problem is or could be, anyone had this problem before or got any suggestions as to what it might be?

Thanks in advance!

The Error / Guild Wars crash:
-> Error Logs <--*
(2) Client pathing data out of sync with server. You may observe your character 'warping' during movement.
(1) Composite: Missing skeleton [race 0, sex 0, profession 0]
(1) Composite: Substituting [race 0, sex 0, profession 1]

Assertion: index < m_count
p:\code\base\rtl\array.h(574)
App: Gw.exe
Flags: 0
What bot are you running that's causing this issue?
Do you get this error while not running the bot?
Do you only get this error in the same location?
Could just be your System/Internet.
  • Network latency.
  • Packet loss between the client and server.
  • Server or client processing delays.

The path p:\code\base\rtl\array.h(574) points to a location in the source code where the assertion failed.
The assertion seems to involve some kind of array or list. It's checking if an index is less than the count (or size) of the array or list. If the index is equal to or greater than the count, it would be an "out of bounds" error, which means the code is trying to access an element that doesn't exist in the array.
09/14/2023 22:58 WillekeurigeTrader#3
Quote:
Originally Posted by Mrjambix View Post
What bot are you running that's causing this issue?
Do you get this error while not running the bot?
Do you only get this error in the same location?
Could just be your System/Internet.
  • Network latency.
  • Packet loss between the client and server.
  • Server or client processing delays.

The path p:\code\base\rtl\array.h(574) points to a location in the source code where the assertion failed.
The assertion seems to involve some kind of array or list. It's checking if an index is less than the count (or size) of the array or list. If the index is equal to or greater than the count, it would be an "out of bounds" error, which means the code is trying to access an element that doesn't exist in the array.
Thanks for the reply, it seems like it was trying to do stuff with the map not fully loaded yet. added some extra checks to see if everything is loaded that needs to be loaded in. will run it again and see if i can encounter the same error again, hopefully not :D