Quote:
Originally Posted by Hajsu
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.