GW working bots 2024

11/19/2024 13:38 t7tcrusher#136
Updated Blake's Dervish Featherbot with new headers and tested it
[edit] Also updated and tested Blake's Vaettir Bot V2.1 (for assasins)[/edit]
[edit2]Also updated and tested Warrior Raptor Bot[/edit]
[edit3]Also updated and tested Ritualist feather farmbot[/edit] if you have a Derv, stick to Blake's, its way better
11/20/2024 15:30 ThreeSixteenSCSA#137
Anyone updated the Pongmei chest farm bot, the celestial mantid farm bot or the barbarous shore r8 chest run bot?

i tried to copy in the new headers to the header file and it still crashes my game. im clueless with this stuff lol
11/20/2024 16:22 Stefferd#138
Ive put new gwa2 and its working fine for me ;)
11/20/2024 16:27 MrObvious83#139
@[Only registered and activated users can see links. Click Here To Register...] try DL the rar file on the header thread and input the GWA2+Header into that and see what happens, better hurry and new update will roll out some time this afternoon/evening.

@[Only registered and activated users can see links. Click Here To Register...] Blake posted his on his thread, you should check that out.

pretty sure Blake updated his Vaettir last night to 2.2


Quote:
Originally Posted by t7tcrusher View Post
Updated Blake's Dervish Featherbot with new headers and tested it
[edit] Also updated and tested Blake's Vaettir Bot V2.1 (for assasins)[/edit]
[edit2]Also updated and tested Warrior Raptor Bot[/edit]
[edit3]Also updated and tested Ritualist feather farmbot[/edit] if you have a Derv, stick to Blake's, its way better
11/20/2024 18:42 t7tcrusher#140
Quote:
Originally Posted by ThreeSixteenSCSA View Post
Anyone updated the Pongmei chest farm bot, the celestial mantid farm bot or the barbarous shore r8 chest run bot?

i tried to copy in the new headers to the header file and it still crashes my game. im clueless with this stuff lol
Here's a celestial farm for ranger, updated and tested
11/20/2024 20:20 ThreeSixteenSCSA#141
thanks ill try when we get favor
11/21/2024 01:33 evan2166#142
Has anyone updated the omnititle bot with success? I've updated the GWA2 and headers with the files from the headers thread but it crashes right away. Every script I've tried instantly crashes currently after updating the GWA2 and header files
11/21/2024 02:00 MrObvious83#143
@[Only registered and activated users can see links. Click Here To Register...] I feel your pain, I relabeled it 2024, this is the 2021 version, and I need to fix the norn section, when I get time. but everything else works great.
11/21/2024 11:53 pgpavel#144
hey guys, do we have any working salvage bot yet?
11/21/2024 20:07 glechene#145
[QUOTE=pgpavel;40127812]hey guys, do we have any working salvage bot yet?[/QUOTE

The fix is listed a few times in the working headers thread.

[Only registered and activated users can see links. Click Here To Register...]
11/22/2024 06:27 TheB0d#146
Updated this and seems to be doing CoF, Iboga and Soup seem good. kabob is broken still
11/24/2024 00:24 Hajsu#147
Quote:
Originally Posted by MrObvious83 View Post
@[Only registered and activated users can see links. Click Here To Register...] I feel your pain, I relabeled it 2024, this is the 2021 version, and I need to fix the norn section, when I get time. but everything else works great.
for kurzick farm unchecking donate button doesn't stop bot from donating. any trick for blocking that?
11/24/2024 00:38 t7tcrusher#148
Quote:
Originally Posted by Hajsu View Post
for kurzick farm unchecking donate button doesn't stop bot from donating. any trick for blocking that?
There's a cap for faction you can aquire. (open your hero panel and see what it is)

If you do not select Donate faction, Omnifarmer will buy Amber for 5k faction.

If you don't want to spend your faction, make sure you don't reach cap cause not much sense in farming it then ;)

The function that does this is in OmniTitle.au3 :

Code:
Func TurnInFactionKurzick()
	CurrentAction("Turning in faction")
	RndSleep(1000)
	GoNearestNPCToCoords(5390, 1524)

	$beforedone = GetKurzickFaction()

	If $Bool_Donate Then
		Do
			CurrentAction("Donate")
			DonateFaction("kurzick")
			RndSleep(500)
		Until GetKurzickFaction() < 5000
	Else
		CurrentAction("Donating Kurzick Faction for Amber")
		Dialog(131)
		RndSleep(550)
		$temp = Floor(GetKurzickFaction() / 5000)
		$id = 8388609 + ($temp * 256)
		Dialog($id)
        RndSleep(550)
	EndIf

	$after_donate = GetKurzickFaction()
	$what_we_donate = $beforedone - $after_donate + $what_we_donate
	RndSleep(500)
EndFunc
If you remove the part between ELSE and ENDIF , it will no longer spend faction, can't recommend it though.
Attached the modified file, should you want to use it.
11/24/2024 00:45 MrObvious83#149
Quote:
Originally Posted by Hajsu View Post
for kurzick farm unchecking donate button doesn't stop bot from donating. any trick for blocking that?
it wont stop on your title, even if you buy scrolls, a skill or chunks it will still add to your title, unchecking the box will just stop it from donating to your alliance. I have updated this script even further but its is still in review mode.
11/24/2024 01:00 Hajsu#150
Quote:
Originally Posted by t7tcrusher View Post
There's a cap for faction you can aquire. (open your hero panel and see what it is)

If you do not select Donate faction, Omnifarmer will buy Amber for 5k faction.

If you don't want to spend your faction, make sure you don't reach cap cause not much sense in farming it then ;)

The function that does this is in OmniTitle.au3 :

Code:
Func TurnInFactionKurzick()
	CurrentAction("Turning in faction")
	RndSleep(1000)
	GoNearestNPCToCoords(5390, 1524)

	$beforedone = GetKurzickFaction()

	If $Bool_Donate Then
		Do
			CurrentAction("Donate")
			DonateFaction("kurzick")
			RndSleep(500)
		Until GetKurzickFaction() < 5000
	Else
		CurrentAction("Donating Kurzick Faction for Amber")
		Dialog(131)
		RndSleep(550)
		$temp = Floor(GetKurzickFaction() / 5000)
		$id = 8388609 + ($temp * 256)
		Dialog($id)
        RndSleep(550)
	EndIf

	$after_donate = GetKurzickFaction()
	$what_we_donate = $beforedone - $after_donate + $what_we_donate
	RndSleep(500)
EndFunc
If you remove the part between ELSE and ENDIF , it will no longer spend faction, can't recommend it though.
Attached the modified file, should you want to use it.
if I understood it well, I can change that faction cap with "Until GetKurzickFaction() < 5000" for example for 30k? I need this little edit for quest where u have to collect 10k unspent faction.

EDIT: I blocked 102 line function. now it doesn't check faction. it's for quest purpose only.