anyone have a fix for the omnibot? with the luxon one, it wont exit the portal, you have to manually run through it or it just runs back and forrth in the outpost, rest works fine though
I just watched 2 or 3 people using the omnifarmer 2022 luxon faction farming and running back and forth 4 or 5 times before exiting .
Here is a fix , goto line 244 and replace with this ,
" ElseIf $Title = "Luxon" Then
MoveTo(-4268, 11628)
Do
RndSleep(500)
Move(-5490, 13672)
RndSleep(500)
Until GetMapID() = $Luxon_Map "
Should fix your problems running around like a chicken with its head cut off .
Anyone know if there is a follow bot on here that will attack?
Found this 1 , doesnt really attack , has the options to use skills . I use it to spam running skills .
You will need to add an upto date GWA2.au3 and GWA2_Header.au3 . Also instructions are in the folder .
anyone have a fix for the omnibot? with the luxon one, it wont exit the portal, you have to manually run through it or it just runs back and forrth in the outpost, rest works fine though
I haven't used it for the past 4-5 months, but bot should be still working and that issue was fixed, also "Use cons" function was added.
Trying to fix a Roller Beetle bot from 2019 , but i get this error and cant figure it out , if anyone know the fix would be appreciated thx .
" Until (CheckArea(-6367, -4438, 100) OR CheckArea(-6625,-4435, 100) OR CheckArea(-6151,-4489, 100) OR CheckArea(-5936, -4485, 100) OR CheckArea(-5720, -4483, 100) OR CheckArea(-5495,-4436, 100)) And GetAgentExists(-2)
Until (^ ERROR
Error : Incorrect number of parameters in function call .
Trying to fix a Roller Beetle bot from 2019 , but i get this error and cant figure it out , if anyone know the fix would be appreciated thx .
" Until (CheckArea(-6367, -4438, 100) OR CheckArea(-6625,-4435, 100) OR CheckArea(-6151,-4489, 100) OR CheckArea(-5936, -4485, 100) OR CheckArea(-5720, -4483, 100) OR CheckArea(-5495,-4436, 100)) And GetAgentExists(-2)
Until (^ ERROR
Error : Incorrect number of parameters in function call .
Your Checkarea Function in the GWA2 only allows 2 parameters.
You can either Change the function in your gwa2 (line 5865) to
Code:
Func CheckArea($aX, $aY, $range)
$ret = False
$pX = DllStructGetData(GetAgentByID(-2), "X")
$pY = DllStructGetData(GetAgentByID(-2), "Y")
If ($pX < $aX + $range) And ($pX > $aX - $range) And ($pY < $aY + $range) And ($pY > $aY - $range) Then
$ret = True
EndIf
Return $ret
EndFunc ;==>CheckArea
OR you cut all "CheckArea(X, Y, 100) to Checkarea(X,Y)" so only 2 parameters (basically cut the 100 after each checkarea.