GW Working Bots 2020

02/09/2021 05:42 GorkyZero#1561
Quote:
Originally Posted by tixxesdan View Post
unfortunately the salad farm does not work in your bot. It runs the whole way without killing a single Iboga.
That is the case because you compare the agentIDs to 4384 in your GetIbogaInRange function but the ID for Ibogas has changed to 4388 (line 684).
That's not mine, i have just updated it and uploaded because someone requested. Never tried the salad function as it's a totally pointless pcon in my opinion. But thanks for the info, this way anyone can fix it (who needs the salad farm).

Edit: Oh, i see you have uploaded a working one, so it doesn't even need fixing now :)
02/09/2021 08:40 Tanni95#1562
Quote:
Originally Posted by honigkuchenpferd2 View Post
The bot posted a few pages ago is working "ok". It shouldn't crash.

Do you have Keirans bow equipped? There is a seperate .au3 file if you don't have the bow yet.
yeah i have the bow equipped on weapon slot 2. The bot also starts correctly, travels and zones into the HoM. However, when it states 'Entering Quest' i get a Disconnect Message from the Game everytime i tried so far.
02/09/2021 09:26 Restia Ashdoll#1563
Quote:
Originally Posted by Tanni95 View Post
yeah i have the bow equipped on weapon slot 2. The bot also starts correctly, travels and zones into the HoM. However, when it states 'Entering Quest' i get a Disconnect Message from the Game everytime i tried so far.
does your account have proph ? - i know this should be obvious but it happend to me too recently so - you need proph activated otherwise game won't let you enter this quest

But it should normaly tp you back to eotn
02/09/2021 09:48 tixxesdan#1564
Quote:
Originally Posted by Tanni95 View Post
yeah i have the bow equipped on weapon slot 2. The bot also starts correctly, travels and zones into the HoM. However, when it states 'Entering Quest' i get a Disconnect Message from the Game everytime i tried so far.
Are you sure you got the needed headers right?
Sounds like something is wrong with the dialog interaction (?)
This one is working for me (tried a few runs). It is the one which was posted some pages earlier.
You can also use it for debugging yours.
02/09/2021 10:24 Tanni95#1565
Quote:
Originally Posted by tixxesdan View Post
Are you sure you got the needed headers right?
Sounds like something is wrong with the dialog interaction (?)
This one is working for me (tried a few runs). It is the one which was posted some pages earlier.
You can also use it for debugging yours.
Yeah i tried it with that bot in the first place. Dc's every time it tries to enter.
Now im getting really confused since its happening with the ToC bot as well.
After 1 completed run, when trying to resign/travel back to ToA it gets a DC... sounds like something is wrong with my Game Settings I assume?

Game is set to English with rest on default and small Interface Size, that should be the right settings, right?

Edit: Got it working now! Thanks for the help to both of u guys, appreciate it!
02/09/2021 10:51 Julyca#1566
Did anybody got the Refeather fixed? I think there is a problem with the resign trick but i cant find the problem.
02/09/2021 16:18 AndaraX42#1567
Quote:
Originally Posted by Tanni95 View Post
Yeah i tried it with that bot in the first place. Dc's every time it tries to enter.
Now im getting really confused since its happening with the ToC bot as well.
After 1 completed run, when trying to resign/travel back to ToA it gets a DC... sounds like something is wrong with my Game Settings I assume?

Game is set to English with rest on default and small Interface Size, that should be the right settings, right?

Edit: Got it working now! Thanks for the help to both of u guys, appreciate it!
What did you do for fixing it? I get DC's as well, as soon as it starts to loot and so on..
02/09/2021 18:00 Tanni95#1568
Quote:
Originally Posted by AndaraX42 View Post
What did you do for fixing it? I get DC's as well, as soon as it starts to loot and so on..
Okay i should have phrased my answer differently. I got the Keiran Bot to work for me now.

However with the ToC Bot, i am still getting Dc's after picking up the loot and trying to restart the run. Currently no clue on why this is happening.
02/09/2021 18:39 Restia Ashdoll#1569
Quote:
Originally Posted by Tanni95 View Post
Okay i should have phrased my answer differently. I got the Keiran Bot to work for me now.

However with the ToC Bot, i am still getting Dc's after picking up the loot and trying to restart the run. Currently no clue on why this is happening.
are you sure your GWA2 is up to date?
02/09/2021 19:16 AndaraX42#1570
Quote:
Originally Posted by Restia Ashdoll View Post
are you sure your GWA2 is up to date?
i guess him and me downloaded the version which was linked on site 105. So it actually should be.
02/09/2021 19:26 Restia Ashdoll#1571
Quote:
Originally Posted by AndaraX42 View Post
i guess him and me downloaded the version which was linked on site 105. So it actually should be.
well that gwa2 is not fully updated but the points mentioned should work
02/09/2021 19:31 AndaraX42#1572
Quote:
Originally Posted by Restia Ashdoll View Post
well that gwa2 is not fully updated but the points mentioned should work
this already helps a lot, thank you. Guess i gotta check out that gwa thing..

i run the game in english, audio language english as well, full mode (not in a window) i have everything on standard.

do i forget something?

the omnifarmer is strange as well - am i logged in with my mesmer, it works for vanguard farming.
Am i logged in with something else, it does not work.
02/09/2021 20:23 Zeus_54#1573
Hi, I'm trying to get my Dervish feather bot working; G2A is updated. It sets up resign, then when it starts running, I get this error:

Line 266

If IsRecharged(6) Then UseSkillEx(6)
If ^ ERROR

Error: Unkown function name.

Here's what that entire section of code looks like in the script:

Code:
Func MoveRun($DestX, $DestY)
   If GetMapLoading() == 2 Then Disconnected()
   If GetIsDead(-2) Then Return
   Local $Me
   Move($DestX, $DestY)
   Do
	  If GetMapLoading() == 2 Then Disconnected()
	  If IsRecharged(6) Then UseSkillEx(6)
	  If IsRecharged(5) Then UseSkillEx(5)
	  $Me = GetAgentByID(-2)
	  If DllStructGetData($Me, "HP") < 0.95 Then
		 If GetEffectTimeRemaining(1516) <= 0 Then UseSkillEx(8)
	  EndIf
	  If GetIsDead(-2) Then Return
	  If DllStructGetData($Me, 'MoveX') == 0 Or DllStructGetData($Me, 'MoveY') == 0 Then Move($DestX, $DestY)
	  RndSleep(250)
   Until ComputeDistance(DllStructGetData($Me, 'X'), DllStructGetData($Me, 'Y'), $DestX, $DestY) < 250
EndFunc
02/09/2021 20:23 Tanni95#1574
Quote:
Originally Posted by Restia Ashdoll View Post
are you sure your GWA2 is up to date?
Hey mate, yeah i think my GWA2 should be fine. Keiran is working pretty well now. and concerning the ToC bot i think the PickUpLoot function is missing some lines and some other little problems as well that cause the error. So i will take a look at it, trying to fix it on my own for now.
Good practice to get into the botting a bit more. :)

Thanks for the heads up mate!
02/09/2021 20:51 Restia Ashdoll#1575
Quote:
Originally Posted by Zeus_54 View Post
Hi, I'm trying to get my Dervish feather bot working; G2A is updated. It sets up resign, then when it starts running, I get this error:

Line 266

If IsRecharged(6) Then UseSkillEx(6)
If ^ ERROR

Error: Unkown function name.

Here's what that entire section of code looks like in the script:

Code:
Func MoveRun($DestX, $DestY)
   If GetMapLoading() == 2 Then Disconnected()
   If GetIsDead(-2) Then Return
   Local $Me
   Move($DestX, $DestY)
   Do
	  If GetMapLoading() == 2 Then Disconnected()
	  If IsRecharged(6) Then UseSkillEx(6)
	  If IsRecharged(5) Then UseSkillEx(5)
	  $Me = GetAgentByID(-2)
	  If DllStructGetData($Me, "HP") < 0.95 Then
		 If GetEffectTimeRemaining(1516) <= 0 Then UseSkillEx(8)
	  EndIf
	  If GetIsDead(-2) Then Return
	  If DllStructGetData($Me, 'MoveX') == 0 Or DllStructGetData($Me, 'MoveY') == 0 Then Move($DestX, $DestY)
	  RndSleep(250)
   Until ComputeDistance(DllStructGetData($Me, 'X'), DllStructGetData($Me, 'Y'), $DestX, $DestY) < 250
EndFunc
Dude ... Unknown function Name guess what error this could be .. your GWA2 doesn't have the needed function obviously ..

Quote:
Originally Posted by Tanni95 View Post
Hey mate, yeah i think my GWA2 should be fine. Keiran is working pretty well now. and concerning the ToC bot i think the PickUpLoot function is missing some lines and some other little problems as well that cause the error. So i will take a look at it, trying to fix it on my own for now.
Good practice to get into the botting a bit more. :)

Thanks for the heads up mate!
GWA2 is definitly not fine currently many things are broken - not everything works - so you need some workarounds for some parts or fix the assembly

--> if you want to finde the errors set Out's at suiting points or comment certain parts and look if the error still happens - gl