lua code:-- Mana Potions Setup --
ManaPotID = 268 -- ID of mana potion.
ManaPotCost = 50 -- The price of a single mana potion.
ManaPotMin = 120 -- The amount of mana potions at which you will leave to go refill.
ManaPotMax = 300 -- The amount of mana potions you want to buy.
-- Health Potions Setup --
HealthID = 236 -- ID of health potion.
HealthCost = 100 -- The price of a single health potion.
HealthMin = 30 -- The amount of health potions at which you will leave to go refill.
HealthMax = 75 -- The amount of health potions you want to buy.
-- Soft Boots Setup --
SoftBoots = true -- Do you want to use soft boots? (true/false)
SoftPercent = 90 -- Mana Percent to equip soft boots.
NormalBoots = 3079 -- Item ID of your normal boots (3079 - Boots of Haste).
------------------------------------------------------------------------------------------------------------------
-- B A C K P A C K S , D E P O & C A P A C I T Y |
------------------------------------------------------------------------------------------------------------------
-- Backpack ID Setup --
ManaBP = 16100 -- ID of the backpack that holds mana pots.
StackBP = 2865 -- ID of the backpack that holds stackable items.
NonStackBP = 2870 -- ID of the backpack that holds non-stackable items.
GoldBP = 2866 -- ID of the backpack that holds gold.
-- Capacity Setup --
MinCapacity = 100 -- If capacity goes below this number it will exit spawn.
ContCap = 100 -- This value is added to your min cap when selling loot to Rafzan to improve efficiency.
-- If your MinCapacity is 100 and ContCap is 100, if you have less than 200 cap after selling
-- to Rafzan you will just go refill instead of returning to the spawn.
-- You can set this value at 0 if you don't want to refill until MinCap~.
-- Drop Flasks Setup --
dropFlasks = true -- Do you want to drop flasks? (true/false)
flaskCap = 200 -- At what capacity do you want to drop flasks?
------------------------------------------------------------------------------------------------------------------
-- S P A W N S P E C I F I C |
------------------------------------------------------------------------------------------------------------------
-- Spawn Randomization --
RandomRoutes = true --Randomize Routes? Otherwise the "easiest" is chosen.
hardcore = false -- Do you want to use the hardcore route, recomended 100+ (true/false)
-- Vendor Setup --
SellLocalEquipment = true -- Do you want to sell local equipment? (true/false)
-- Vendor List --
ItemsToSell = {
Products = {},
Equipment = {
"Leather Harness",
"Life Preserver",
"Ratana",
"Spike Shield",
"Spiky Club"
},