TY for the answer, but the one you talk about fail in render mode, i don't know why :(
Install AutoIt launch the file script in 86xQuote:
How do I run this bot? Is there any guide on this forum for running them?
Thanks in advance.
|
|
you are always in danger of getting banned if you botQuote:
hey guys.
I tried your bot.. amazing... no words.
But... donc you think we can get ban for using it ?
Do you use it on your main account or on alt account only ?
do we have a recent report ? I found the topic that speak about several years ago...
Thanks again
here an example for shields with max armor .. but there are no q8 in hm anyway ^^Quote:
the v0.3 works great. i've made some little changes where I wanted to, but the one thing I still can't figure out is how to script storing golds that have a q8 stat on them. I don't need to store all the other junk, but in case there happens to drop a q8, I'd like to save it
any idea how to code it? I tried years ago when I was playing to no avail. thought I'd ask now that I'm messing around again
Case $TYPE_SHIELD If $aReq = 9 And GetItemMaxDmg($aItem) = 16 Then ; Req8 Shields Return False ElseIf $aReq = 8 And GetItemMaxDmg($aItem) = 16 Then ; Req8 Shields Return False ElseIf $aReq = 7 And GetItemMaxDmg($aItem) = 15 Then ; Req7 Shields Return False ElseIf $aReq = 6 And GetItemMaxDmg($aItem) = 14 Then ; Req6 Shields Return False ElseIf $aReq = 5 And GetItemMaxDmg($aItem) = 13 Then ; Req5 Shields Return False ElseIf $aReq = 4 And GetItemMaxDmg($aItem) = 12 Then ; Req4 Shields Return False EndIf
Check if your bot recognizes which guild he is in - if he runs to the wrong merchant he probably has the wrong pathing for your GH - This is what i use for AftercareQuote:
Hey guys, i'm having an issue with the bot not selling anything and thus having the inventory full all the time.
What shoud I do to fix it?
Edit: i fixed it by leaving my guild, as when in the guild hall my char was heading to the rune merchant and not merchant.
How should i fix it when still in the guild?
Func Inventory()
Out("Travel to Guild Hall")
TravelGH()
WaitMapLoading()
Out("Checking Guild Hall")
CheckGuildHall()
Merchant()
Out("Identifying")
Ident(1)
Ident(2)
Ident(3)
;~ Ident(4)
Out("Selling")
Sell(1)
Sell(2)
Sell(3)
;~ Sell(4)
If GetGoldCharacter() > 80000 Then
Out("Depositing Gold")
DepositGold()
EndIf
Sleep(GetPing()+1000)
If GetGoldCharacter() > 80000 Then
Out("Buying Rare Materials")
RareMaterialTrader()
EndIf
Chest()
StoreGolds()
LeaveGH()
WaitMapLoading()
EndFunc
Quote:
Check if your bot recognizes which guild he is in - if he runs to the wrong merchant he probably has the wrong pathing for your GH - This is what i use for Aftercare
Code:Func Inventory() Out("Travel to Guild Hall") TravelGH() WaitMapLoading() Out("Checking Guild Hall") CheckGuildHall() Merchant() Out("Identifying") Ident(1) Ident(2) Ident(3) ;~ Ident(4) Out("Selling") Sell(1) Sell(2) Sell(3) ;~ Sell(4) If GetGoldCharacter() > 80000 Then Out("Depositing Gold") DepositGold() EndIf Sleep(GetPing()+1000) If GetGoldCharacter() > 80000 Then Out("Buying Rare Materials") RareMaterialTrader() EndIf Chest() StoreGolds() LeaveGH() WaitMapLoading() EndFunc