Register for your free account! | Forgot your password?

You last visited: Today at 22:14

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Guild Wars Botting API Patcher

Discussion on Guild Wars Botting API Patcher within the GW Exploits, Hacks, Bots, Tools & Macros forum part of the Guild Wars category.

Reply
 
Old 06/13/2018, 21:55   #91
 
phat34's Avatar
 
elite*gold: 0
Join Date: Sep 2014
Posts: 354
Received Thanks: 120
Cool

Quote:
Originally Posted by Stary Pen' View Post
Code:
_('ScanLoadFinished:')
AddPattern('8D0C383BCB761E8D14183BD776176871010000BAD80D9D00B9D403A300E85C')
Like so

You need to provide an offset for this pattern?? and usually not exceed 12 bytes for a pattern??
phat34 is offline  
Old 06/23/2018, 13:20   #92
 
elite*gold: 0
Join Date: Jan 2018
Posts: 11
Received Thanks: 1
hey rheek, first of all ty for your work with the API Patcher!! helped me out alot!

recently I testet some stuff with a fiber bot, but after a certain amount of runs i think its ~15 runs it gives me a whitebox message...

if someone experienced could look over the bot, would be great!
Attached Files
File Type: zip Fiber Whirling.zip (247.5 KB, 6 views)
buffnar0 is offline  
Old 07/02/2018, 07:45   #93
 
elite*gold: 0
Join Date: Dec 2014
Posts: 6
Received Thanks: 2
Hey guys,

I need help at updating a very nice bot.
Maybe u can help me - thank u in advance!

Quote:
Speedbook.au3 (942): ;~ Description: Change the currently displayed title.
SpeedBook\Speedbook.au3 (943): Func ChangeDisplayedTitle($aTitle)
SpeedBook\Speedbook.au3 (944): SendPacket(0x8, 0x50, $aTitle)
SpeedBook\Speedbook.au3 (945): EndFunc ;==>ChangeDisplayedTitle
Sanatri is offline  
Old 07/02/2018, 14:20   #94
 
phat34's Avatar
 
elite*gold: 0
Join Date: Sep 2014
Posts: 354
Received Thanks: 120
Code:
;=TITLE=

Global Const $HEADER_TITLE_DISPLAY				= 0x5D	;Displays title (from Gigis Vaettir Bot)
Global Const $HEADER_TITLE_CLEAR				= 0x5E	;Hides title (from Gigis Vaettir Bot)
phat34 is offline  
Thanks
1 User
Old 07/02/2018, 14:41   #95
 
elite*gold: 0
Join Date: Dec 2017
Posts: 64
Received Thanks: 2
Code:
Func LoadAttributes($aAttributesArray, $aHeroNumber = 0)
	Local $lPrimaryAttribute
	Local $lDeadlock
	Local $lHeroID = GetHeroID($aHeroNumber)
	Local $lLevel

	$lPrimaryAttribute = GetProfPrimaryAttribute(GetHeroProfession($aHeroNumber))

	If $aAttributesArray[0][0] <> 0 And GetHeroProfession($aHeroNumber, True) <> $aAttributesArray[0][0] And GetHeroProfession($aHeroNumber) <> $aAttributesArray[0][0] Then
		Do
			$lDeadlock = TimerInit()
			ChangeSecondProfession($aAttributesArray[0][0], $aHeroNumber)
			Do
				Sleep(20)
			Until GetHeroProfession($aHeroNumber, True) == $aAttributesArray[0][0] Or TimerDiff($lDeadlock) > 5000
		Until GetHeroProfession($aHeroNumber, True) == $aAttributesArray[0][0]
	EndIf

	$aAttributesArray[0][0] = $lPrimaryAttribute
	For $i = 0 To UBound($aAttributesArray) - 1
		If $aAttributesArray[$i][1] > 12 Then $aAttributesArray[$i][1] = 12
		If $aAttributesArray[$i][1] < 0 Then $aAttributesArray[$i][1] = 0
	Next

	While GetAttributeByID($lPrimaryAttribute, False, $aHeroNumber) > $aAttributesArray[0][1]
		$lLevel = GetAttributeByID($lPrimaryAttribute, False, $aHeroNumber)
		$lDeadlock = TimerInit()
		DecreaseAttribute($lPrimaryAttribute, $aHeroNumber)
		Do
			Sleep(20)
		Until GetAttributeByID($lPrimaryAttribute, False, $aHeroNumber) < $lLevel Or TimerDiff($lDeadlock) > 5000
		TolSleep()
	WEnd
	For $i = 1 To UBound($aAttributesArray) - 1
		While GetAttributeByID($aAttributesArray[$i][0], False, $aHeroNumber) > $aAttributesArray[$i][1]
			$lLevel = GetAttributeByID($aAttributesArray[$i][0], False, $aHeroNumber)
			$lDeadlock = TimerInit()
			DecreaseAttribute($aAttributesArray[$i][0], $aHeroNumber)
			Do
				Sleep(20)
			Until GetAttributeByID($aAttributesArray[$i][0], False, $aHeroNumber) < $lLevel Or TimerDiff($lDeadlock) > 5000
			TolSleep()
		WEnd
	Next
	For $i = 0 To 44
		If GetAttributeByID($i, False, $aHeroNumber) > 0 Then
			If $i = $lPrimaryAttribute Then ContinueLoop
			For $j = 1 To UBound($aAttributesArray) - 1
				If $i = $aAttributesArray[$j][0] Then ContinueLoop 2
				Local $lDummy ;AutoIt 3.8.8.0 Bug
			Next
			While GetAttributeByID($i, False, $aHeroNumber) > 0
				$lLevel = GetAttributeByID($i, False, $aHeroNumber)
				$lDeadlock = TimerInit()
				DecreaseAttribute($i, $aHeroNumber)
				Do
					Sleep(20)
				Until GetAttributeByID($i, False, $aHeroNumber) < $lLevel Or TimerDiff($lDeadlock) > 5000
				TolSleep()
			WEnd
		EndIf
	Next

	While GetAttributeByID($lPrimaryAttribute, False, $aHeroNumber) < $aAttributesArray[0][1]
		$lLevel = GetAttributeByID($lPrimaryAttribute, False, $aHeroNumber)
		$lDeadlock = TimerInit()
		IncreaseAttribute($lPrimaryAttribute, $aHeroNumber)
		Do
			Sleep(20)
		Until GetAttributeByID($lPrimaryAttribute, False, $aHeroNumber) > $lLevel Or TimerDiff($lDeadlock) > 5000
		TolSleep()
	WEnd
	For $i = 1 To UBound($aAttributesArray) - 1
		While GetAttributeByID($aAttributesArray[$i][0], False, $aHeroNumber) < $aAttributesArray[$i][1]
			$lLevel = GetAttributeByID($aAttributesArray[$i][0], False, $aHeroNumber)
			$lDeadlock = TimerInit()
			IncreaseAttribute($aAttributesArray[$i][0], $aHeroNumber)
			Do
				Sleep(20)
			Until GetAttributeByID($aAttributesArray[$i][0], False, $aHeroNumber) > $lLevel Or TimerDiff($lDeadlock) > 5000
			TolSleep()
		WEnd
	Next
EndFunc   ;==>LoadAttributes
LoadAttributes not working for Hero. Any body know how fix it?
Stary Pen' is offline  
Old 07/02/2018, 16:25   #96
 
phat34's Avatar
 
elite*gold: 0
Join Date: Sep 2014
Posts: 354
Received Thanks: 120
Sure...

replace these lines in your code to what I have below:

Code:
SETVALUE("DecreaseAttributeFunction", "0x" & Hex(GETSCANNEDADDRESS("ScanDecreaseAttributeFunction", 41), 8))

_("ScanDecreaseAttributeFunction:")
ADDPATTERN("8B402C8BCE059C0000008B1089118B50")
...let me know if that worked...
phat34 is offline  
Thanks
1 User
Old 07/02/2018, 17:37   #97
 
elite*gold: 0
Join Date: Jun 2009
Posts: 94
Received Thanks: 66
Quote:
Originally Posted by Sanatri View Post
Hey guys,

I need help at updating a very nice bot.
Maybe u can help me - thank u in advance!
Code:
SendPacket(0x8, 0x5D, $aTitle)
Share it bro
afmart is offline  
Thanks
1 User
Old 07/02/2018, 17:49   #98
 
elite*gold: 0
Join Date: Dec 2017
Posts: 64
Received Thanks: 2
Quote:
Originally Posted by phat34 View Post
Sure...

replace these lines in your code to what I have below:

Code:
SETVALUE("DecreaseAttributeFunction", "0x" & Hex(GETSCANNEDADDRESS("ScanDecreaseAttributeFunction", 41), 8))

_("ScanDecreaseAttributeFunction:")
ADDPATTERN("8B402C8BCE059C0000008B1089118B50")
...let me know if that worked...
Working, tyvm
Stary Pen' is offline  
Old 07/05/2018, 07:16   #99
 
elite*gold: 0
Join Date: Dec 2014
Posts: 6
Received Thanks: 2
Quote:
Originally Posted by afmart View Post
Code:
SendPacket(0x8, 0x5D, $aTitle)
Share it bro
Thank you for your help. @ you too.

It's working again.

Thanks to @ for uploading the bot here.
Attached Files
File Type: rar speedbook.rar (302.9 KB, 26 views)
Sanatri is offline  
Thanks
2 Users
Old 07/05/2018, 16:59   #100
 
elite*gold: 270
Join Date: Jun 2017
Posts: 38
Received Thanks: 19
Quote:
Originally Posted by buffnar0 View Post
hey rheek, first of all ty for your work with the API Patcher!! helped me out alot!

recently I testet some stuff with a fiber bot, but after a certain amount of runs i think its ~15 runs it gives me a whitebox message...

if someone experienced could look over the bot, would be great!
after GWA2 update bot works fine until it stores the materials to storage (at Seitung Harbor) - then the bot is crashing every time

Maybe someone can help, unfortunately I'm not a programmer.
Thanks in advance!
Attached Files
File Type: rar Calypso Fiber Whirling (1).rar (232.6 KB, 13 views)
Akira25 is offline  
Old 07/24/2018, 19:20   #101
 
elite*gold: 0
Join Date: Aug 2011
Posts: 7
Received Thanks: 0
I am new to this botting thingy.

I downloaded AutoIT.

I downloaded GWA 2.

I downloaded the vaettire bot.

Game crashed.

Someone told me to get this patcher.

I downloaded the GWA2_Patcher

Clicked on it and this shows up:

Line 3 [File "C:\User\...\Desktop\GWA2_Patcher.au3"]:

#include "incl\GWA2_Function_Header_Table.au3"

Error: Error opening the file.

Any advices?
kONE1337 is offline  
Old 07/31/2018, 14:03   #102
 
elite*gold: 0
Join Date: Jun 2014
Posts: 18
Received Thanks: 0
Quote:
Originally Posted by kONE1337 View Post

#include "incl\GWA2_Function_Header_Table.au3"

Error: Error opening the file.
It cannot find the GWA2_Function_Header_Table.au3 file inside the incl folder
daan1010 is offline  
Old 07/31/2018, 19:35   #103
 
elite*gold: 0
Join Date: Jul 2009
Posts: 1
Received Thanks: 1
yo *** bless the op and everyone that's posted to help. you guys are ******* awesome. after about an hour of troubleshooting, i managed to download brain.exe and get the patcher working
OmniTheran is offline  
Thanks
1 User
Old 08/02/2018, 09:31   #104
 
elite*gold: 0
Join Date: Feb 2018
Posts: 4
Received Thanks: 0
The Chest Run bot I use wasn't working before, so I patched the folder, said no files changed, so I copied GWA2_Headers and GWA2_Function_Header_Table to the folder, seems to be working so far. No idea why though, doesn't look like anything changed besides me copying those files...
radasde is offline  
Old 08/04/2018, 22:47   #105
 
phat34's Avatar
 
elite*gold: 0
Join Date: Sep 2014
Posts: 354
Received Thanks: 120
Global Const $HEADER_QUEST_ACCEPT = 0x3F ;Accepts a quest from the NPC
phat34 is offline  
Reply


Similar Threads Similar Threads
WTS Guild Wars Gold,Guild Wars Ectos,Guild Wars Zaishen Keys for sale
02/19/2013 - Guild Wars Trading - 4 Replies
Hi, i want to sell Guild Wars Gold,Guild Wars Ectos,Guild Wars Zaishen Keys.If someone is interested , you can email me and add my msn. We can talk details there. I will give u a low price of Guild Wars Gold,Guild Wars Ectos,Guild Wars Zaishen Keys including weapons. I am serious. Email:[email protected] MSN:[email protected] Thank you for reading my post.



All times are GMT +2. The time now is 22:14.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.