Quote:
Originally Posted by WillekeurigeTrader
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, *** 0, profession 0]
(1) Composite: Substituting [race 0, *** 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.
- 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.