Register for your free account! | Forgot your password?

You last visited: Today at 03:28

  • 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 08/14/2019, 11:35   #1351
 
oneshout's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 385
Received Thanks: 294
Quote:
Originally Posted by Bibopp View Post
more effective version
- Survivability is way better (good job )
- the ball-up of enemy mobs is no effective for the moment (but enough to test and have an idea of effective)
- Possible to have character who take the drop of gemstones margonites on the run before the end of the run ? if it fail before the end, drop are lost (have done manually before the end of the run and i was right...my character die just after)

Quote:
Margonite gemstone
- ModelId : 21128
Good job Bibopp
oneshout is offline  
Old 08/14/2019, 13:29   #1352
 
Bibopp's Avatar
 
elite*gold: 0
Join Date: Mar 2013
Posts: 39
Received Thanks: 51
DOA R-A Farmer V1.0

I think it’s working pretty well now.
New...
Attached Files
File Type: zip DOA R-A Farmer V1.1.zip (48.4 KB, 45 views)
Bibopp is offline  
Thanks
3 Users
Old 08/14/2019, 15:44   #1353
 
oneshout's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 385
Received Thanks: 294
Quote:
Originally Posted by Bibopp View Post
I think it’s working pretty well now.
New...
noob questions :
- are there a function for target a specific foe like margo ki ?
- What is the condition for bot to stop the run ? (apart from being dead )
oneshout is offline  
Old 08/14/2019, 18:32   #1354
 
elite*gold: 0
Join Date: Aug 2018
Posts: 48
Received Thanks: 88
Quote:
Originally Posted by oneshout View Post
noob questions :
- are there a function for target a specific foe like margo ki ?
I did it in my plains farm bot to target riders only :

Code:
Func GetTargetRider($aAgent = -2, $aRange = 1700)
	 If GetIsDead(-2) Then Return
	 Local $rider = 2323
	 If GetMapLoading() == 2 Then Disconnected()
	  Local $lAgent, $lDistance, $lNearestDistance, $TargetRider
	  Local $lAgentArray = GetAgentArray(0xDB)
	  If Not IsDllStruct($aAgent) Then $aAgent = GetAgentByID($aAgent)
	  $lNearestDistance = 9999
	  For $i = 1 To $lAgentArray[0]
		 $lAgent = $lAgentArray[$i]
		 If BitAND(DllStructGetData($lAgent, 'typemap'), 262144) Then
		 If StringLeft(GetAgentName($lAgent), 7) <> "Servant" Then ContinueLoop
		 EndIf
		 If DllStructGetData($lAgent, 'Allegiance') <> 3 Then ContinueLoop
		 If DllStructGetData($lAgent, 'HP') <= 0 Then ContinueLoop
		 If BitAND(DllStructGetData($lAgent, 'Effects'), 0x0010) > 0 Then ContinueLoop
		 $lDistance = GetDistance($lAgent)
		 If $lDistance > $aRange Then ContinueLoop


		 If DllStructGetData($lAgent, 'PlayerNumber') <> $rider Then ContinueLoop


		 If $lDistance < $lNearestDistance Then
			$TargetRider = $lAgent
			$lNearestDistance = $lDistance
		 EndIf
	  Next
   Return $TargetRider
EndFunc
Code:
Func GetNumberOfRidersInRangeOfAgent($aAgent = -2, $aRange = 1700)
   If GetIsDead(-2) Then Return
   Local $rider = 2323
   If GetMapLoading() == 2 Then Disconnected()
   Local $lAgent, $lDistance
   Local $lCount = 0, $lAgentArray = GetAgentArray(0xDB)
   If Not IsDllStruct($aAgent) Then $aAgent = GetAgentByID($aAgent)
   For $i = 1 To $lAgentArray[0]
	  $lAgent = $lAgentArray[$i]
	  If BitAND(DllStructGetData($lAgent, 'typemap'), 262144) Then
		If StringLeft(GetAgentName($lAgent), 7) <> "Servant" Then ContinueLoop
	  EndIf
	  If DllStructGetData($lAgent, 'Allegiance') <> 3 Then ContinueLoop
	  If DllStructGetData($lAgent, 'HP') <= 0 Then ContinueLoop
	  If BitAND(DllStructGetData($lAgent, 'Effects'), 0x0010) > 0 Then ContinueLoop
	  $lDistance = GetDistance($lAgent)
	  If $lDistance > $aRange Then ContinueLoop


	  If DllStructGetData($lAgent, 'PlayerNumber') <> $rider Then ContinueLoop


	  $lCount += 1
   Next
   Return $lCount
EndFunc
Quote:
Originally Posted by oneshout View Post
- What is the condition for bot to stop the run ? (apart from being dead )
What do you mean ?
tonreuf is offline  
Old 08/14/2019, 20:02   #1355
 
oneshout's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 385
Received Thanks: 294
Quote:
Originally Posted by tonreuf View Post
[B]
What do you mean ?
I wanted to know conditions for the bot to stop the run, resign and go again... It's not clear in my mind

PS : Tks for the script tonreuf, Phat34 help me too with similar thing
oneshout is offline  
Old 08/14/2019, 20:03   #1356
 
Coaxx123's Avatar
 
elite*gold: 0
Join Date: Mar 2019
Posts: 133
Received Thanks: 42
Code:
 CombatLoop()
;~ 	BackToTown()
Presume that's what youre asking?
Coaxx123 is offline  
Old 08/14/2019, 20:08   #1357
 
oneshout's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 385
Received Thanks: 294
Quote:
Originally Posted by Coaxx123 View Post
Code:
 CombatLoop()
;~ 	BackToTown()
Presume that's what youre asking?
humm not really... just wanted to know if there is a kind of timer, specific number of foe killed etc... Seem bot resign randomly for me...maybe it's just me
oneshout is offline  
Old 08/14/2019, 20:38   #1358
 
Coaxx123's Avatar
 
elite*gold: 0
Join Date: Mar 2019
Posts: 133
Received Thanks: 42
Quote:
Originally Posted by oneshout View Post
humm not really... just wanted to know if there is a kind of timer, specific number of foe killed etc... Seem bot resign randomly for me...maybe it's just me
Can only see the timers for deadlock and can't see any other reason it would end, are you sure that's not being triggered early?
Coaxx123 is offline  
Old 08/14/2019, 22:12   #1359
 
phat34's Avatar
 
elite*gold: 0
Join Date: Sep 2014
Posts: 354
Received Thanks: 120
I noticed he resigned early as well... will be looking at this more closely..
phat34 is offline  
Old 08/15/2019, 09:57   #1360
 
Coaxx123's Avatar
 
elite*gold: 0
Join Date: Mar 2019
Posts: 133
Received Thanks: 42
Anyone have an old rups evolved bot I could attempt to update at all?

Nevermind I have found them
Coaxx123 is offline  
Old 08/15/2019, 14:08   #1361

 
NiliyaFlamme's Avatar
 
elite*gold: 0
Join Date: Nov 2017
Posts: 179
Received Thanks: 130
Rupt bot in 2k19 luls xD
NiliyaFlamme is offline  
Old 08/15/2019, 14:24   #1362
 
Coaxx123's Avatar
 
elite*gold: 0
Join Date: Mar 2019
Posts: 133
Received Thanks: 42
Quote:
Originally Posted by NiliyaFlamme View Post
Rupt bot in 2k19 luls xD
Missing something?
Coaxx123 is offline  
Old 08/15/2019, 14:42   #1363

 
NiliyaFlamme's Avatar
 
elite*gold: 0
Join Date: Nov 2017
Posts: 179
Received Thanks: 130
Quote:
Originally Posted by Coaxx123 View Post
Missing something?
No,all okay, it was just funny, no flame or anything
NiliyaFlamme is offline  
Old 08/16/2019, 16:55   #1364
 
elite*gold: 0
Join Date: Aug 2018
Posts: 12
Received Thanks: 0
hello! i was wondering if there was any public working destroyer cores bot available?
pseudopseudogw is offline  
Old 08/16/2019, 17:23   #1365
 
oneshout's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 385
Received Thanks: 294
Quote:
Originally Posted by pseudopseudogw View Post
hello! i was wondering if there was any public working destroyer cores bot available?
not for the moment and the older one done by was build around a GWapi...
But again, the farm is really easy and can be done afk :

->

Cheers
oneshout 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 03:28.


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.