someone have jq bot or Uw bot ? ty
*--> Crash <--* Assertion: index < m_count p:\code\base\rtl\array.h(574) App: Gw.exe BaseAddr: 00590000 ProgramId: 1 Build: 37121 When: 6/7/2021 14:08:11 Flags: 0
can't really narrow it down for your special case but i can give you an example where i had the same issue ->Quote:
Hi guys,
Am I the only one having random GW crash (grey popup asking for "Send/Do not send" report to ANet) on most if not all kind of bots (DragonMoss, Feather, Vaettir, Chestrun, etc...) ?
By "random", I mean sometimes it crashes 15min after running, sometimes it crashes after 70+hours non stop.
I trying to narrowing the issue but it makes no sense. A 70+ hours running time on DragonMoss means 2000+ runs completed and then "boom", triggering right from nowhere, GW crashes with grey popup...
Here the first lines of every crash :
Code:*--> Crash <--* Assertion: index < m_count p:\code\base\rtl\array.h(574) App: Gw.exe BaseAddr: 00590000 ProgramId: 1 Build: 37121 When: 6/7/2021 14:08:11 Flags: 0
Thanks for your inputs about this.
If you look at the definition of PickUpItem function in GWA2.au3 you can see that it is written as follow : "Func PickUpItem($aItem)".Quote:
Can someone check and say what i can do there? I don't understand terms of "incorrect numbers of parameter in function call". I trying to revive Kilroy bot, but i can only make him running without pickuping loot...
I try to put other functions for pickuping items, but still doesn't work.
Here is code which i try to repair:
I tried using your tips, but i don't know why it says "variable used without being declared"Quote:
If you look at the definition of PickUpItem function in GWA2.au3 you can see that it is written as follow : "Func PickUpItem($aItem)".
It means that this function requires one parameter (not 0, not 2, just 1).
The required parameter, here, is the item you are trying to pickup.
Usually, this function is called in a for loop that parse all items one by one and store it in a variable called $lItem or $aItem.
So to fix your bot, you should call the function PickUpItem as follow :
PickUpItem($aItem) or PickUpItem($lItem)