Guild Wars Botting API Patcher

08/05/2018 18:24 sool a#106
Hi all,

I have the same problem as "Akira25"

Fiber bot crash at the materials to storage (at Seitung Harbor).

somebody can help me ?
08/08/2018 01:09 ayyy_lmao#107
Quote:
Originally Posted by sool a View Post
Hi all,

I have the same problem as "Akira25"

Fiber bot crash at the materials to storage (at Seitung Harbor).

somebody can help me ?
It's most likely trying to store them in the anniversary storage slot and you don't have it unlocked. That's where my fiber used to get stuck. it never crashed though so idk if that is what's happening or not.
08/08/2018 06:32 phat34#108
lower the high limit of the for loop maybe.... (of bag number variable when iterating through all your bags)
08/11/2018 15:46 wolf_of_the_north#109
Hey guys,
I couldn't fix it myself but if anyone is interested and knows how to add the missing functions (i know of the sleep function that doesn't seem to work) and doesn't have the bot, here is a Stygian bot that farms gems from the first few groups of stygian horros.
09/18/2018 06:21 OuttaControlX#110
Youre a god. Thank you!
09/23/2018 11:14 cue990#111
where is the new header ?
[Only registered and activated users can see links. Click Here To Register...]
or
[Only registered and activated users can see links. Click Here To Register...]
ping me the new headers my peeps :)
09/24/2018 21:13 Jamamon#112
Quote:
Originally Posted by cue990 View Post
where is the new header ?
[Only registered and activated users can see links. Click Here To Register...]
or
[Only registered and activated users can see links. Click Here To Register...]
ping me the new headers my peeps :)
[Only registered and activated users can see links. Click Here To Register...]

Should be in that thread
09/26/2018 17:06 rheek#113
What new headers? To my knowledge there weren't any updates that broke headers for a few months. Didnt bot for a long time, so no idea.

But as no one else asked for new headers I really doubt you will need new ones.
10/21/2018 23:24 Stary Pen'#114
Code:
;~ Description: Returns level of an attribute.
Func GetAttributeByID($aAttributeID, $aWithRunes = False, $aHeroNumber = 0)
	Local $lAgentID = GetHeroID($aHeroNumber)
	Local $lBuffer
	Local $lOffset[5]
	$lOffset[0] = 0
	$lOffset[1] = 0x18
	$lOffset[2] = 0x2C
	$lOffset[3] = 0xAC
	For $i = 0 To GetHeroCount()
		$lOffset[4] = 0x3D8 * $i
		$lBuffer = MemoryReadPtr($mBasePointer, $lOffset)
		If $lBuffer[1] == $lAgentID Then
			If $aWithRunes Then
				$lOffset[4] = 0x3D8 * $i + 0x14 * $aAttributeID + 0xC
			Else
				$lOffset[4] = 0x3D8 * $i + 0x14 * $aAttributeID + 0x8
			EndIf
			$lBuffer = MemoryReadPtr($mBasePointer, $lOffset)
			Return $lBuffer[1]
		EndIf
	Next
EndFunc   ;==>GetAttributeByID
Why the function not work for hero?
10/28/2018 23:48 Tr1gg3red#115
anyone have the new openstorage/byid pattern?ty
12/14/2018 21:21 Nitelion94#116
I try to open and get the message " #include "incl\GWA@_Function_Header_Table.au3''
12/16/2018 22:18 rheek#117
Quote:
Originally Posted by Nitelion94 View Post
I try to open and get the message " #include "incl\GWA@_Function_Header_Table.au3''
The error message tells you what file is missing. I guess you just downloaded the main file, you will need ALL files from the repo though.
12/21/2018 09:02 teejay89#118
Every time i launch a bot game crashes? any help to fix please?

EDIT: Figured it out thanks so much for your guys amazing work![Only registered and activated users can see links. Click Here To Register...]
02/03/2019 23:34 PremiumUser1337#119
hey guys, i have a problem.

ive downloaded those bots a while ago ( like 1.5 years or somethin like that ) and they worked back then.
now i tried them and they just crash my guild wars.
ive updated them all but they still wont work.

instant crash of my guild wars client + message that i can send a crash message to arena net.. what im not going to :D

any suggestions?
02/21/2019 12:14 rheek#120
I just added a generic method to update single lines in bots. This will fix the problems with selling stuff and probably storing/withdrawing gold in gwa2. Didnt test the xunlai stuff nor gwapi.

If you find other lines that can be exchanged simply one-by-one, post the old line and new line here and I'll add it to the github. Or add them yourself and create a pull request.