Register for your free account! | Forgot your password?

You last visited: Today at 12:58

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

Advertisement



GW Working Bots 2019!

Discussion on GW Working Bots 2019! within the GW Exploits, Hacks, Bots, Tools & Macros forum part of the Guild Wars category.

Reply
 
Old 05/07/2019, 01:52   #511
 
elite*gold: 0
Join Date: Aug 2015
Posts: 113
Received Thanks: 42
Quote:
Originally Posted by kymsy View Post
Hey guys, thank you for all the work so far, i'm following you since 4 years now.
I admit it, I almost never posted anything but thank you for all the sharing bot and maccro, you made me learn how to change some part in the code etc...

At least could you please send me the github of the Gwa2 header update, i found some but i'm not sure if it's a public opened one.
There's a post a few pages prior to this one with most of the headers updated in it. The header values were only incremented by 1 (i.e. 0x83 becomes 0x84, and so on). I'm not sure if all the headers were changed, or just some of them. Keep in mind that they're in hex format, so it can be handy to use a hex to decimal converter.
Jamamon is offline  
Old 05/07/2019, 07:44   #512
 
oneshout's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 385
Received Thanks: 294
Quote:
Originally Posted by Jamamon View Post
There's a post a few pages prior to this one with most of the headers updated in it. The header values were only incremented by 1 (i.e. 0x83 becomes 0x84, and so on). I'm not sure if all the headers were changed, or just some of them. Keep in mind that they're in hex format, so it can be handy to use a hex to decimal converter.
The headers is easily to update, it's not as simple for GWA2.au3 wich is the hardest part for the bot update...

PS : At the moment, testing the 2019 Keyran 6.7 with the partial headers update + GWA2
- Bot work (path, kill, collect item) but...
- Bot can't switch weapon
- Bot + game crash when character die cuz it can't clic on the button
oneshout is offline  
Thanks
2 Users
Old 05/07/2019, 09:57   #513
 
elite*gold: 0
Join Date: Dec 2014
Posts: 21
Received Thanks: 12
Keiran

Quote:
Originally Posted by oneshout View Post
The headers is easily to update, it's not as simple for GWA2.au3 wich is the hardest part for the bot update...

PS : At the moment, testing the 2019 Keyran 6.7 with the partial headers update + GWA2
- Bot work (path, kill, collect item) but...
- Bot can't switch weapon
- Bot + game crash when character die cuz it can't clic on the button
$ReturnToOutpostHeader = 0xAD is the header i use. But it was still crashing until I commented out CHECKINVENTORY() in line 243.

Since then it is running fine for me.

Hope this helps.
schnoesel21 is offline  
Thanks
3 Users
Old 05/07/2019, 10:21   #514
 
oneshout's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 385
Received Thanks: 294
Quote:
Originally Posted by schnoesel21 View Post
$ReturnToOutpostHeader = 0xAD is the header i use. But it was still crashing until I commented out CHECKINVENTORY() in line 243.

Since then it is running fine for me.

Hope this helps.

got the right header but The CHECKINVENTORY() trick seem to not do the job, still crashing
oneshout is offline  
Old 05/07/2019, 10:42   #515
 
elite*gold: 0
Join Date: Dec 2014
Posts: 21
Received Thanks: 12
Quote:
Originally Posted by oneshout View Post
got the right header but The CHECKINVENTORY() trick seem to not do the job, still crashing
Thats my script to compare it. good luck
Attached Files
File Type: zip Keiran 6.7.zip (43.9 KB, 31 views)
schnoesel21 is offline  
Thanks
3 Users
Old 05/07/2019, 10:56   #516
 
oneshout's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 385
Received Thanks: 294
Quote:
Originally Posted by schnoesel21 View Post
Thats my script to compare it. good luck
Dunno what i've miss..yours is working well nvm, tks a lot

PS :
- Switch weapon function don't work
oneshout is offline  
Old 05/07/2019, 11:04   #517
 
elite*gold: 0
Join Date: Mar 2019
Posts: 69
Received Thanks: 2
Quote:
Originally Posted by schnoesel21 View Post
Thats my script to compare it. good luck
what is this bot used for?

I was wondering if there are any destroyer core farming bots?
cruzmoreno27 is offline  
Old 05/07/2019, 11:20   #518
 
oneshout's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 385
Received Thanks: 294
Quote:
Originally Posted by cruzmoreno27 View Post
what is this bot used for?

I was wondering if there are any destroyer core farming bots?
The bot is intended to farm Supply war + vanguard point in same time.. short quest + 1k gold / 1250 Vanguard pts at the end, a good bot.
oneshout is offline  
Old 05/07/2019, 11:55   #519
 
elite*gold: 0
Join Date: Dec 2014
Posts: 21
Received Thanks: 12
Quote:
Originally Posted by oneshout View Post
Dunno what i've miss..yours is working well nvm, tks a lot

PS :
- Switch weapon function don't work
Switch weapon is one of the PerformAction Functions. I dont have a solution for that so far.
schnoesel21 is offline  
Old 05/07/2019, 13:26   #520
 
elite*gold: 0
Join Date: Mar 2018
Posts: 8
Received Thanks: 3
So, does someone have a solution for PerformAction? l'm still struggling with it?
SecurityByDesign is offline  
Old 05/07/2019, 13:44   #521
 
elite*gold: 0
Join Date: Mar 2018
Posts: 24
Received Thanks: 17
Quote:
Originally Posted by schnoesel21 View Post
Switch weapon is one of the PerformAction Functions. I dont have a solution for that so far.
Code:
Func ChangeWeaponSetByPacket($aSet)
	Switch $aSet
		Case 1, 2, 3, 4
			Return SendPacket(0x8, 0x38, $aSet - 1)
		Case Else
			Return False
	EndSwitch
EndFunc
smiley232 is offline  
Thanks
1 User
Old 05/07/2019, 15:12   #522
 
oneshout's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 385
Received Thanks: 294
Quote:
Originally Posted by smiley232 View Post
Code:
Func ChangeWeaponSetByPacket($aSet)
	Switch $aSet
		Case 1, 2, 3, 4
			Return SendPacket(0x8, 0x38, $aSet - 1)
		Case Else
			Return False
	EndSwitch
EndFunc
from original GWA2 :
Code:
Func ChangeWeaponSet($aSet)
	Return PerformAction(0x80 + $aSet, 0x18)
EndFunc
If it's correct, Changing by yours does nothing...
oneshout is offline  
Old 05/07/2019, 15:18   #523
 
elite*gold: 0
Join Date: Dec 2014
Posts: 21
Received Thanks: 12
Quote:
Originally Posted by oneshout View Post
from original GWA2 :
Code:
Func ChangeWeaponSet($aSet)
	Return PerformAction(0x80 + $aSet, 0x18)
EndFunc
If it's correct, Changing by yours does nothing...
It is working for me. Try to override your changeweaponset function with that:

Code:
;~ Description: Change weapon sets.
;Func ChangeWeaponSet($aSet)
;	Return PerformAction(0x80 + $aSet, 0x18)
;EndFunc   ;==>ChangeWeaponSet

Func ChangeWeaponSet($aSet)
	Switch $aSet
		Case 1, 2, 3, 4
			Return SendPacket(0x8, 0x38, $aSet - 1)
		Case Else
			Return False
	EndSwitch
EndFunc
schnoesel21 is offline  
Thanks
4 Users
Old 05/07/2019, 15:33   #524
 
oneshout's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 385
Received Thanks: 294
Quote:
Originally Posted by schnoesel21 View Post
It is working for me. Try to override your changeweaponset function with that:

Code:
;~ Description: Change weapon sets.
;Func ChangeWeaponSet($aSet)
;	Return PerformAction(0x80 + $aSet, 0x18)
;EndFunc   ;==>ChangeWeaponSet

Func ChangeWeaponSet($aSet)
	Switch $aSet
		Case 1, 2, 3, 4
			Return SendPacket(0x8, 0x38, $aSet - 1)
		Case Else
			Return False
	EndSwitch
EndFunc
omg i'm so stupid.. really... i was trying to modify original GWA2 instead of the file 2019_GWA2_Gold who is use by this bot ...slap me hard
It's working now
oneshout is offline  
Old 05/07/2019, 15:45   #525
 
elite*gold: 270
Join Date: Jun 2017
Posts: 38
Received Thanks: 19
its working for me now. Thank you so far.
I'm a bit confused because the weapon was changed to slot 1 but at GW window still weapon slot 2 is active
Akira25 is offline  
Reply


Similar Threads Similar Threads
Last Chaos GuardianS - New 2019 Server (Opening 12 January 2019)
01/27/2019 - Last Chaos Private Server - 180 Replies
https://www.youtube.com/watch?v=kCfwdUoPHu0 Website Coming Soon Server Information Start level :1 Max level:165 Experience:x2 Skill Points:x3
[Selling] Microsoft Office Professional Plus 2019 / Microsoft Office Home and Business 2019
12/05/2018 - Trading - 0 Replies
Topic Zahlung nur per PayPal. Angebote einfach unter dem Thread.



All times are GMT +2. The time now is 12:58.


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.