Hello, some time ago, Magyander and I had posted our bot quarry update. However, in this maneuver, one of our last changes was not saved.
The function of exchanging imperial points for material did not work. We knew that it was not really useful, people preferring keys to materials.
But today I decided to fix this feature. So here is
EDIT : I found two other problems concerning the exchange of luxons and kurzicks points for materials. I am correcting them tonight.
Problème corrigé
Yes i have every eotn town on all my toons ive tried each of these 3 on multiple toons, was able to get norn bot to run but once it sold an item it crashed
Update 1 :
- the purpose of the bot is to farm reputation, Sell function is disabled (don't like to lose time to loot/sell items for this kind of bot )
- Now, the bot can be launch with any languages (not locked on english anymore)
- Add CustomPickupLoot (call from CommonFunction) / CustomCanpickup function
Func CustomCanPickUp($aItem)
Local $lModelID = DllStructGetData(($aItem), 'ModelID')
Local $lRarity = GetRarity($aItem)
If $lModelID == 2511 And GetGoldCharacter() < 99000 Then Return True ; gold coins (only pick if character has less than 99k in inventory)
;If $lModelID > 21785 And $lModelID < 21806 Then Return True ; Elite/Normal Tomes
If $lModelID == $ITEM_ID_DYES Then ; if dye
Switch DllStructGetData($aItem, "ExtraID")
Case $ITEM_EXTRAID_BLACKDYE, $ITEM_EXTRAID_WHITEDYE ; only pick white and black ones
Return True
Case Else
Return False
EndSwitch
EndIf
If $lRarity == $RARITY_GOLD Then Return True ; gold items
If $lRarity == $RARITY_PURPLE Then Return False
If $lRarity == $RARITY_BLUE Then Return False
If $lRarity == $RARITY_WHITE Then Return False
If $lModelID == $ITEM_ID_LOCKPICKS Then Return True ; Lockpicks
; ==== Pcons ====
If $lModelID == $ITEM_ID_TOTS Then Return True
If $lModelID == $ITEM_ID_GOLDEN_EGGS Then Return True
If $lModelID == $ITEM_ID_BUNNIES Then Return True
If $lModelID == $ITEM_ID_GROG Then Return True
If $lModelID == $ITEM_ID_CLOVER Then Return True
If $lModelID == $ITEM_ID_PIE Then Return True
If $lModelID == $ITEM_ID_CIDER Then Return True
If $lModelID == $ITEM_ID_POPPERS Then Return True
If $lModelID == $ITEM_ID_ROCKETS Then Return True
If $lModelID == $ITEM_ID_CUPCAKES Then Return True
If $lModelID == $ITEM_ID_SPARKLER Then Return True
If $lModelID == $ITEM_ID_HONEYCOMB Then Return True
If $lModelID == $ITEM_ID_VICTORY_TOKEN Then Return True
If $lModelID == $ITEM_ID_LUNAR_TOKEN Then Return True
If $lModelID == $ITEM_ID_HUNTERS_ALE Then Return True
If $lModelID == $ITEM_ID_LUNAR_TOKENS Then Return True
If $lModelID == $ITEM_ID_KRYTAN_BRANDY Then Return True
If $lModelID == $ITEM_ID_BLUE_DRINK Then Return True
If $lModelID == $ITEM_ID_GHOST_IN_A_BOX Then Return True
If $lModelID == $ITEM_ID_SHAMROCK_ALE Then Return True
; If you want to pick up more stuff add it here
Return False
EndFunc ;==>CustomCanPickUp
The bot can loot only gold items, lockpicks, black and white dyes, gold coins; you can modif what you want now (change by True or False)
Update 2 : Add Disable rendering checkbox on the GUI Update 3 : i've put the same modif on the 2 others bots Update 4 : Asura and Deldrimor bots updated (miss to enable the sell.au3...my bad) Update 5 : Deldrimor bot now, have the customcanpickup function enable and can grab keys (donjon key and boss key)
Update 6 :
- GUI updated
- Now you can activate Legionnary Stone if you want
Is there any JQ Kurzick reputation farm bot? The last one I used to use just crashes the game when right after purging. Thank you in advance for any info.
Is there any JQ Kurzick reputation farm bot? The last one I used to use just crashes the game when right after purging. Thank you in advance for any info.
And why not about to take time and read this last page of the thread ? maybe you'll find what you're looking for...
Update 1 :
- the purpose of the bot is to farm reputation, Sell function is disabled (don't like to lose time to loot/sell items for this kind of bot )
- Now, the bot can be launch with any languages (not locked on english anymore)
- Add CustomPickupLoot (call from CommonFunction) / CustomCanpickup function
Func CustomCanPickUp($aItem)
Local $lModelID = DllStructGetData(($aItem), 'ModelID')
Local $lRarity = GetRarity($aItem)
If $lModelID == 2511 And GetGoldCharacter() < 99000 Then Return True ; gold coins (only pick if character has less than 99k in inventory)
;If $lModelID > 21785 And $lModelID < 21806 Then Return True ; Elite/Normal Tomes
If $lModelID == $ITEM_ID_DYES Then ; if dye
Switch DllStructGetData($aItem, "ExtraID")
Case $ITEM_EXTRAID_BLACKDYE, $ITEM_EXTRAID_WHITEDYE ; only pick white and black ones
Return True
Case Else
Return False
EndSwitch
EndIf
If $lRarity == $RARITY_GOLD Then Return True ; gold items
If $lRarity == $RARITY_PURPLE Then Return False
If $lRarity == $RARITY_BLUE Then Return False
If $lRarity == $RARITY_WHITE Then Return False
If $lModelID == $ITEM_ID_LOCKPICKS Then Return True ; Lockpicks
; ==== Pcons ====
If $lModelID == $ITEM_ID_TOTS Then Return True
If $lModelID == $ITEM_ID_GOLDEN_EGGS Then Return True
If $lModelID == $ITEM_ID_BUNNIES Then Return True
If $lModelID == $ITEM_ID_GROG Then Return True
If $lModelID == $ITEM_ID_CLOVER Then Return True
If $lModelID == $ITEM_ID_PIE Then Return True
If $lModelID == $ITEM_ID_CIDER Then Return True
If $lModelID == $ITEM_ID_POPPERS Then Return True
If $lModelID == $ITEM_ID_ROCKETS Then Return True
If $lModelID == $ITEM_ID_CUPCAKES Then Return True
If $lModelID == $ITEM_ID_SPARKLER Then Return True
If $lModelID == $ITEM_ID_HONEYCOMB Then Return True
If $lModelID == $ITEM_ID_VICTORY_TOKEN Then Return True
If $lModelID == $ITEM_ID_LUNAR_TOKEN Then Return True
If $lModelID == $ITEM_ID_HUNTERS_ALE Then Return True
If $lModelID == $ITEM_ID_LUNAR_TOKENS Then Return True
If $lModelID == $ITEM_ID_KRYTAN_BRANDY Then Return True
If $lModelID == $ITEM_ID_BLUE_DRINK Then Return True
If $lModelID == $ITEM_ID_GHOST_IN_A_BOX Then Return True
If $lModelID == $ITEM_ID_SHAMROCK_ALE Then Return True
; If you want to pick up more stuff add it here
Return False
EndFunc ;==>CustomCanPickUp
The bot can loot only gold items, lockpicks, black and white dyes, gold coins; you can modif what you want now (change by True or False)
Update 2 : Add Disable rendering checkbox on the GUI Update 3 : i've put the same modif on the 2 others bots
Cheers
I try to use the Deldrimor bot and crash...if i don't understand wrong is something about space in my inventory, but my first bag (20 slots) is empty
hey, so i was trying to get a bot to single out items that have the measure for measure inscription on them i used the GetModStruct($aitem) function and the code i used was 32000826 i found such an approach on this forum, but this hasnt been working out for me.
i am able to store items in my chest so it appears to me that the way i try to detect items with such an inscription is faulty(if i try to check rarity for example the item gets stored but ofc thats not what i want) if anyone knows how this can be done thatd be great
Local $Mats = StringInStr($ModStruct, "32000826", 0, 1)
If $mats > 0
hey, so i was trying to get a bot to single out items that have the measure for measure inscription on them i used the GetModStruct($aitem) function and the code i used was 32000826 i found such an approach on this forum, but this hasnt been working out for me.
i am able to store items in my chest so it appears to me that the way i try to detect items with such an inscription is faulty(if i try to check rarity for example the item gets stored but ofc thats not what i want) if anyone knows how this can be done thatd be great
Local $Mats = StringInStr($ModStruct, "32000826", 0, 1)
If $mats > 0
Last Chaos GuardianS - New 2019 Server (Opening 12 January 2019) 01/27/2019 - Last Chaos Private Server - 180 Replies https://www.youtube.com/watch?v=kCfwdUoPHu0
Website Coming Soon
Server Information
Start level :1
Max level:165
Experience:x2
Skill Points:x3