Hi, thx for the great job done on this script!!!! Incredible speed improvement, this is awesome!!
However, I have one problem. I'm not sure if I am the only one that is suffering from this.
The bot is stashing ilvl50, ilvl51, ilvl55 magic items ect, literally everything below ilvl59, and sometimes magic ilvl62, although my settings are like:
Code:
$i59Rare = "vend"
$i60Rare = "vend"
$i61Rare = "salvage"
$i62Rare = "stash"
$i63Rare = "stash"
$i59Magic = "vend"
$i60Magic = "vend"
$i61Magic = "salvage"
$i62Magic = "salvage"
$i63Magic = "stash"
Also, it switches to the 3rd stash tab when stashing items, even though the 2nd one is not full. The settings are:
Code:
$GemTab = 1 ;Tab to put gems and tombs in
$ItemTab = 2 ;Tab to put any items in
$NextItemTab = 3 ;Next Tab to put any items in when first one is full
$FinalItemTab = 3 ;Next, Next Tab to put any items in when Next one is full
BTW, I found a small mistake in the script:
When the character returns to town and the script is about to analyse items, it press "c" instead of $Inventory:
----------------Start of analysis, Line: 1654----------------
Code:
GUICtrlSetData($lblStatus, "Status: Analysing loots")
Send("c")
Sleep(500)
----------------End of analysis, Line: 1851----------------
Code:
Send("c")
Sleep(500)
;Call("AddLog", "Stash gear : " & $str_Stash )
I am using TAB and i for the inventory, so press "c" won't work at all. I have changed mine to Send("$Inventory") myself, but I think it will be useful if I post it here.
Thx again for this best ever script!!!
OK, for the first problem, I see why.
Code:
; Below ilvl 59
If $StashRare Then
$str_Stash = $str_Stash & "|" & 1435 + (48 * $x) & "," & 609 + (45 * $y)
ElseIf $VendorRare Then
$str_Vendor = $str_Vendor & "|" & 1435 + (48 * $x) & "," & 609 + (45 * $y)
Else
$str_Stash = $str_Stash & "|" & 1435 + (48 * $x) & "," & 609 + (45 * $y)
EndIf
I need to change ALL "TRUE"s to "FALSE"s in these lines:
Code:
$StashRare = True ;True if you want to store Rare items in the stash
$StashMagic = False ;True if you want to store Magic items in the stash