;Looting
$LootSets = True ;True if you want to pick up Sets
$LootLegendaries = True;True if you want to pick up Legendaries
$LootRares = True ;True if you want to pick up Rares
$LootMagic = True ;True if you want to pick up Magic
$LootGems = True ;True if you want to pick up Gems
$LootTomes = True ;True if you want to pick up Tome of Secrets
$LootCustom = True ;True if you want to pick up Custom Items (The items in the $pick array above)
Global $pick[1] = ["gold.png|50"];Array of items to loot (GEMS AND TOMES ALREADY INCLUDED)
;Global $pick[2] = ["mythic.png|50", "gold.png|50"]
;Manage Loot
$Identify = True ;True to enable identifying items before stashing/vendoring
$mLoot = 9 ;Nuber of successful runs until Stash and Vendor
$mLootOff = 3 ;Stash and Vendor after mLoot +- X number of runs (Variability)
;Variability ==NEW SETTINGS==
$Timer = False ;True and the bot will add random sleep intervals
$loadtime = 3400 ;Time (in ms) the script waits for the game to load before it starts pathfinding. Slow this down for slower hard drives
$tptime = 6000 ;Time (in ms) the script waits for teleport before exiting the game
;Stashing/vendoring COMMON
$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
$VendorRare = False ;True if you want to vendor Rares
$VendorMagic = True ;True if you want to vendor Magic
$GemTab = 1 ;Tab to put gems and tombs in
$ItemTab = 1 ;Tab to put any items in
$NextItemTab = 2 ;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
$UseiLVL = True ;set true or false to enable the iLVL system THIS OVERRIDES ALL "TRADITIONAL" SETTINGS
;--------------------------------------------TRADITIONAL----------------------------------------------------
;Stashing/vendoring TRADITIONAL METHOD to enable set line 155 to FALSE
$StashLoot = True ;True if you want to store Items in the stash
$StashLegendary = True;True if you want to store Legendary items in the stash
$StashTomes = True ;True if you want to store Tomes items in the stash
$StashGems = True ;True if you want to store Gems items in the stash
$StashIdentified = True; Stash all items that have just been identified
;SALVAGE - setting this will OVERRIDE traditional vendoring options - it will be skipped
; make sure you have a stack of each material in your bottom row( which is not scanned )for it to add To
; otherwise it will start tying to salvage your craft items and do nothing!
$SalvageLoot = False
;Vendoring ==NEW SETTINGS==
$VendorLoot = True ;True if you want to vendor anything
$vendorAll = False ;True if you want to right click all items when talking to vendor
$vendorRows = 6 ;# of rows to vendor, starting from the top (default = 5: bottom row is safe)
$vendorCols = 10 ;# of columns to vendor, starting from left
;--------------------------------------------TRADITIONAL----------------------------------------------------
; OPTIONS ABOVE AND BELOW ARE MUTUALLY EXCLUSIVE
;--------------------------------------------iLVL----------------------------------------------------
;====================================;
;New Analyze Loot Settings Options are "salvage", "stash", and "vend"
$i59Rare = "salvage"
$i60Rare = "salvage"
$i61Rare = "salvage"
$i62Rare = "stash"
$i63Rare = "stash"
$i59Magic = "salvage"
$i60Magic = "salvage"
$i61Magic = "salvage"
$i62Magic = "salvage"
$i63Magic = "salvage"
;====================================;
;--------------------------------------------iLVL----------------------------------------------------