Register for your free account! | Forgot your password?

You last visited: Today at 19:07

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

Advertisement



GW Working Bots 2020

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

Reply
 
Old 09/20/2021, 12:27   #2086
 
elite*gold: 0
Join Date: Apr 2009
Posts: 88
Received Thanks: 9
Quote:
Originally Posted by Dupljakus View Post
Hello guys, i updated Dust farm rit bot and i post it here.
Changed some dup functions and changed some no gwa2 functions.
After a long time im able to repair some bots, and im proud of myself. ^^
I post it because some of you good people updated and posted some old bots for me. Thx guys.
Im no creator of this bot, i just updated it. All credits go to creator of this bot. It picks dust, shadowy remains, event items and dyes. He stores dust after every 5th run. If you wanna make him to pick up gold items, just add some item id-s.
Hello
I have Downloaded this bot and it works fine after updating it. However i cant figure out how to add the item id's so the bot will pick up other items.

If I want the bot to pick up lets say "Truncheon". I get a Truncheon in my bag and use GwToolbox to get the Model ID. I then add this line "Global Const $ITEM_ID_Truncheon = 259" in the script same place as all the other ids.

but the bot is still not picking it up? what am I doing wrong?
ARJ is offline  
Old 09/20/2021, 14:27   #2087
 
elite*gold: 0
Join Date: Nov 2015
Posts: 41
Received Thanks: 18
Quote:
Originally Posted by ARJ View Post
Hello
I have Downloaded this bot and it works fine after updating it. However i cant figure out how to add the item id's so the bot will pick up other items.

If I want the bot to pick up lets say "Truncheon". I get a Truncheon in my bag and use GwToolbox to get the Model ID. I then add this line "Global Const $ITEM_ID_Truncheon = 259" in the script same place as all the other ids.

but the bot is still not picking it up? what am I doing wrong?
look for the function named something similar to
Func PickUpLoot()

Add the id into that function
Blind995 is offline  
Thanks
1 User
Old 09/20/2021, 19:05   #2088
 
elite*gold: 0
Join Date: Oct 2016
Posts: 16
Received Thanks: 1
not a question about a bot but i dont wanna create a new topic.
Whats the restrictions for automated gvg games?
TheKuM1Ko is offline  
Old 09/21/2021, 10:54   #2089
 
elite*gold: 0
Join Date: Jul 2010
Posts: 12
Received Thanks: 1
Good Morning
Does anyone have a working chest runner bot?
Mine only farms the inventory once and then crashes
*JuMpEr is offline  
Old 09/21/2021, 15:30   #2090
 
elite*gold: 0
Join Date: Apr 2009
Posts: 24
Received Thanks: 2
Quote:
Originally Posted by *JuMpEr View Post
Good Morning
Does anyone have a working chest runner bot?
Mine only farms the inventory once and then crashes
Any chest runner? Or a specific one?
Macbeth01 is offline  
Old 09/21/2021, 15:33   #2091
 
elite*gold: 0
Join Date: Jul 2010
Posts: 12
Received Thanks: 1
Quote:
Originally Posted by Macbeth01 View Post
Any chest runner? Or a specific one?
It is only important to me that it runs well and that I am not forced to restart the game every 30 minutes
*JuMpEr is offline  
Old 09/21/2021, 15:36   #2092
 
elite*gold: 0
Join Date: Apr 2009
Posts: 24
Received Thanks: 2
Quote:
Originally Posted by *JuMpEr View Post
It is only important to me that it runs well and that I am not forced to restart the game every 30 minutes
Here you are, one for Sin, the other one is free-for-all classes.
Attached Files
File Type: rar _WORK - Assassin - 2021 Assassin Pongmei.rar (48.9 KB, 92 views)
File Type: rar _WORK - GENERIC - Boreal Chest Runner.rar (45.7 KB, 70 views)
Macbeth01 is offline  
Thanks
2 Users
Old 09/21/2021, 15:45   #2093
 
elite*gold: 0
Join Date: Apr 2009
Posts: 88
Received Thanks: 9
Quote:
Originally Posted by Blind995 View Post
look for the function named something similar to
Func PickUpLoot()

Add the id into that function
Hey again ^_^

I found the function and even looked at other bot scrips (but no scripts look alike). And i cant seems to figurer out how to put in the code :/

The is the only "pickup" function the script

Code:
Func PickupItems($iItems = -1, $fMaxDistance = 1012)
	Local $aItemID, $lNearestDistance, $lDistance
	$tDeadlock = TimerInit()
	Do
		$aItem = GetNearestItemToAgent(-2)
		$lDistance = [MENTION=368499]Extended[/MENTION]

		$aItemID = DllStructGetData($aItem, 'ID')
		If $aItemID = 0 Or $lDistance > $fMaxDistance Or TimerDiff($tDeadlock) > 30000 Then ExitLoop
		PickUpItem($aItem)
		$tDeadlock2 = TimerInit()
		Do
			Sleep(500)
			If TimerDiff($tDeadlock2) > 5000 Then ContinueLoop 2
		Until DllStructGetData(GetAgentById($aItemID), 'ID') == 0
		$iItems_Picked += 1
		;UpdateStatus("Picked total " & $iItems_Picked & " items")
	Until $iItems_Picked = $iItems
	Return $iItems_Picked
EndFunc
ARJ is offline  
Old 09/21/2021, 16:49   #2094
 
Zvend's Avatar
 
elite*gold: 143
Join Date: Oct 2011
Posts: 72
Received Thanks: 31
Quote:
Originally Posted by ARJ View Post
Hey again ^_^

I found the function and even looked at other bot scrips (but no scripts look alike). And i cant seems to figurer out how to put in the code :/

The is the only "pickup" function the script

Code:
Func PickupItems($iItems = -1, $fMaxDistance = 1012)
	Local $aItemID, $lNearestDistance, $lDistance
	$tDeadlock = TimerInit()
	Do
		$aItem = GetNearestItemToAgent(-2)
		$lDistance = [MENTION=368499]Extended[/MENTION]

		$aItemID = DllStructGetData($aItem, 'ID')
		If $aItemID = 0 Or $lDistance > $fMaxDistance Or TimerDiff($tDeadlock) > 30000 Then ExitLoop
		PickUpItem($aItem)
		$tDeadlock2 = TimerInit()
		Do
			Sleep(500)
			If TimerDiff($tDeadlock2) > 5000 Then ContinueLoop 2
		Until DllStructGetData(GetAgentById($aItemID), 'ID') == 0
		$iItems_Picked += 1
		;UpdateStatus("Picked total " & $iItems_Picked & " items")
	Until $iItems_Picked = $iItems
	Return $iItems_Picked
EndFunc
U go into the PickUpItem($aItem) function and see what happens. If u struggle with the basics of programming, then maybe go and learn the basics?^^
Zvend is offline  
Thanks
1 User
Old 09/21/2021, 18:58   #2095
 
elite*gold: 0
Join Date: Apr 2009
Posts: 88
Received Thanks: 9
Quote:
Originally Posted by Zvend View Post
U go into the PickUpItem($aItem) function and see what happens. If u struggle with the basics of programming, then maybe go and learn the basics?^^
so true .. but normally when u give me hints I figurer it out. But this time I'm lost. But yes i should just start searching for basics and start reading. Thx again
ARJ is offline  
Old 09/21/2021, 19:02   #2096
 
Zvend's Avatar
 
elite*gold: 143
Join Date: Oct 2011
Posts: 72
Received Thanks: 31
Quote:
Originally Posted by ARJ View Post
Hey again ^_^

I found the function and even looked at other bot scrips (but no scripts look alike). And i cant seems to figurer out how to put in the code :/

The is the only "pickup" function the script

Code:
Func PickupItems($iItems = -1, $fMaxDistance = 1012)
	Local $aItemID, $lNearestDistance, $lDistance
	$tDeadlock = TimerInit()
	Do
		$aItem = GetNearestItemToAgent(-2)
		$lDistance = [MENTION=368499]Extended[/MENTION]

		$aItemID = DllStructGetData($aItem, 'ID')
		If $aItemID = 0 Or $lDistance > $fMaxDistance Or TimerDiff($tDeadlock) > 30000 Then ExitLoop
		PickUpItem($aItem)
		$tDeadlock2 = TimerInit()
		Do
			Sleep(500)
			If TimerDiff($tDeadlock2) > 5000 Then ContinueLoop 2
		Until DllStructGetData(GetAgentById($aItemID), 'ID') == 0
		$iItems_Picked += 1
		;UpdateStatus("Picked total " & $iItems_Picked & " items")
	Until $iItems_Picked = $iItems
	Return $iItems_Picked
EndFunc
Quote:
Originally Posted by ARJ View Post
so true .. but normally when u give me hints I figurer it out. But this time I'm lost. But yes i should just start searching for basics and start reading. Thx again
basicly, you see a function "PickupItems" which has no "If-Statements" where they actually check for the item. Then you see another function which calls to pick up an item. Its called "PickUpItem($aItem)". So there is a high chance that ur checks about what to pick up is inside the next function being called.
But if so, it would be strange, because the function keeps logging when it is picked up and adds a counter of items being picked up.

Maybe double check if this is really the function which is being called by your bot.
Zvend is offline  
Thanks
1 User
Old 09/22/2021, 00:00   #2097
 
elite*gold: 0
Join Date: Aug 2007
Posts: 25
Received Thanks: 12
hey guys i need a dumper or something for coords tracking. I found an old one but its not working as expected.

I also tried to plot my current position with:

Local $lMe
$lMe = GetAgentByID(-2)
$posx = DllStructGetData($lMe, 'X')
$posy = DllStructGetData($lMe, 'Y')

but x,y is always 0

thanks for help
lalilu11 is offline  
Old 09/22/2021, 02:08   #2098
 
Zvend's Avatar
 
elite*gold: 143
Join Date: Oct 2011
Posts: 72
Received Thanks: 31
Quote:
Originally Posted by lalilu11 View Post
hey guys i need a dumper or something for coords tracking. I found an old one but its not working as expected.

I also tried to plot my current position with:

Local $lMe
$lMe = GetAgentByID(-2)
$posx = DllStructGetData($lMe, 'X')
$posy = DllStructGetData($lMe, 'Y')

but x,y is always 0

thanks for help
you would need to provide more code for backtracking what is not working.

But please check:
1. To actually initialize ur bot
2. declare all vars
3. GetAgentByID is returning a struct or anything
Zvend is offline  
Thanks
1 User
Old 09/22/2021, 05:32   #2099
 
elite*gold: 0
Join Date: Aug 2007
Posts: 25
Received Thanks: 12
Quote:
Originally Posted by Zvend View Post
you would need to provide more code for backtracking what is not working.

But please check:
1. To actually initialize ur bot
2. declare all vars
3. GetAgentByID is returning a struct or anything
ok thanks it works

hello, i have a question again. Is it possible to return the name of the enemy? Which is the best strategy to select for example the boss of a group? Thanks for help
lalilu11 is offline  
Old 09/24/2021, 11:50   #2100
 
elite*gold: 0
Join Date: Nov 2015
Posts: 41
Received Thanks: 18
Any tips on how to work around the Outpost Map ID and the Explorable Map ID being the same number?
Blind995 is offline  
Reply


Similar Threads Similar Threads
[WTT] UPlay Anno 2020 Complete Key gegen Anno 1404/Anno 2020 Complete STEAM
08/12/2015 - Steam Trading - 0 Replies
Want to Trade UPlay Anno 2020 Complete Key gegen Anno 1404 oder Anno 2020 Complete STEAM only with Middleman



All times are GMT +2. The time now is 19:07.


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.