local config = {
GoldContainer = "Zaoan Chess Box",
Gold = {"Platinum Coin"},
GoldEnabled = true,
StackableContainer = "Zaoan Chess Box",
Stackables = {"Platinum Coin", "Small Diamond", "Great Health Potion", "Spiked Iron Ball", "Cursed Shoulder Spikes", "Scale of Corruption", "Corrupted Flag", "Strong Mana Potion", "Hydra Head", "Life Crystal", "Small Sapphire", "Ultimate Health Potion", "Boggy Dreads", "Great Spirit Potion", "Great Health Potion", "Small Emerald", "Soul Orb", "Great Mana Potion", "Undead Heart", "Demonic Essence", "Ghastly Dragon Head", "Strand of Medusa Hair", "Snake Skin", "Winged Tail", "Spider Silk", "Small Amethyst", "Metal Spike", "Scythe Leg", "Essence of a Bad Dream", "Battle Stone", "Assassin Star", "Perfect Behemoth Fang", "Behemoth Claw", "Unholy Bone", "Piece of Draconian Steel", "Piece of Royal Steel", "Piece of Royal Steel", "Piece of Hell Steel", "Demon Horn", "Fire Mushroom", "Small Topaz", "Small Ruby", "Talon", "Bone Shoulderplate", "Warmaster's Wristguards", "Broken Slicer", "Broken Draken Mail", "Draken Wristbands", "Draken Sulphur", "Magic Sulphur", "Eye of Corruption", "Tail of Corruption", "Weaver's Wandtip", "Bundle of Curser Straw", "Gold Ingot", "Black Pearl", "White Pearl", "Cultish Mask", "Strong Health Potion", "Vexclaw Talon", "Some Grimeleech Wings", "Pair of Hellflayer Horns", "Frazzle Skin", "Frazzle Tongue", "Brown Crystal Splinter", "Red Crystal Fragment", "Violet Crystal Shard", "Cluster of Solace", "Goosebump Leather", "Pool of Chitinous Glue", "Blue Crystal Splinter", "Green Crystal Shard", "Hemp Rope", "Silencer Claws", "Silencer Resonating Chamber", "Dead Weight"},
NonStackableContainer = "Fur Backpack",
NonStackables = {"Zaoan Shoes", "Zaoan Legs", "Zaoan Armor", "Zaoan Legs", "Tower Shield", "Zaoan Helmet", "Knight Armor", "Boots of Haste", "Royal Helmet", "Medusa Shield", "Stone Skin Amulet", "Ring of Healing", "Warrior Helmet", "Hibiscus Dress", "Paladin Armor", "Springsprout Rod", "Terra Boots", "Terra Legs", "Jade Hat", "Drakinata", "Spellweaver's Robe", "Zaoan Sword", "Guardian Boots", "Terra Amulet", "Terra Mantle", "Sacred Tree Amulet", "Titan Axe", "Mercenary Sword", "Life Ring", "Crown Armor", "Crown Legs", "Crown Helmet", "Crown Shield", "Noble Axe", "Swamplair Armor", "Spellbook of Mind Control", "Sapphire Hammer", "Platinum Amulet", "Glacier Mask", "Jewelled Backpack", "Giant Sword", "Steel Boots", "Tin Key", "Dreaded Cleaver", "Chaos Mace", "Skull Helmet", "War Axe", "Behemoth Trophy", "Ruby Necklace", "Legion Helmet", "Skull Staff", "Hammer of Wrath", "War Horn", "Demon Shield", "Mastermind Shield", "Golden Legs", "Magic Plate Armor", "Fire Axe", "Ice Rapier", "Purple Tome", "Demon Trophy", "Demonrage Sword", "Golden Ring", "Devil Helmet", "Ring of the Sky", "Assassin Dagger", "Twiceslicer", "Elite Draken Mail", "Shield of Corruption", "Draken Boots", "Cobra Crown", "Snake God's Wristguard", "Terra Hood", "Wand of Voodoo", "Wand of Inferno", "Focus Cape", "Bamboo Leaves", "Zaoan Robe", "Harness", "Draken Trophy", "Spellweaver's Robe", "Gold Ring", "Hailstorm Rod", "Amulet of Loss", "Yellow Gem", "Red Gem", "Green Gem", "Blue Gem", "Dragonbone Staff", "Dragon Slayer", "Divine Plate", "Golden Armor", "Skullcracker Armor", "Blue Robe", "Amber Staff", "Broken Key Ring", "Mysterious Voodoo Skull", "Knight Legs", "Epee", "Bonebreaker", "Jade Hammer", "Berserker", "Lightning Boots", "Haunted Blade", "Death Ring", "Rift Crossbow", "Rift Bow", "Rift Shield", "Rift Lance", "Abyss Hammer", "Vile Axe", "Nightmare Blade", "Magma Legs", "Underworld Rod", "Magma Boots", "Demonbone Amulet", "Sai", "Butcher's Axe", "Spiked Squelcher", "Wand of Starstorm", "Fire Sword", "Beastslayer Axe", "Ring of Healing", "Guardian Shield", "Springsprout Rod", "Glorious Axe", "Diamond Sceptre", "Boots of Haste", "Shadow Sceptre"}
}
while true do
for i = 0, #Container.GetIndexes() - 1 do
local c = Container.GetFromIndex(i)
if c:isOpen() and (c:Name():find("The") or c:Name():find("Demonic") or c:Name():find("Dead") or c:Name():find("Slain") or c:Name():find("Dissolved") or c:Name():find("Remains") or c:Name():find("Elemental")) then
for s = 0, c:ItemCount() - 1 do
local item = Item.GetName(c:GetItemData(s).id):titlecase()
if config.GoldEnabled and table.contains(config.Gold, item) and Self.Cap() > 100 then
local destCont = Container.GetByName(config.GoldContainer)
c:MoveItemToContainer(s, destCont:Index(), math.min(destCont:ItemCount() + 1, destCont:ItemCapacity() - 1))
wait(200, 300)
break
elseif table.contains(config.Stackables, item) then
local destCont = Container.GetByName(config.StackableContainer)
c:MoveItemToContainer(s, destCont:Index(), math.min(destCont:ItemCount() + 1, destCont:ItemCapacity() - 1))
wait(200, 300)
break
elseif table.contains(config.NonStackables, item) then
local destCont = Container.GetByName(config.NonStackableContainer)
c:MoveItemToContainer(s, destCont:Index(), math.min(destCont:ItemCount() + 1, destCont:ItemCapacity() - 1))
wait(200, 300)
break
end
end
end
end
wait(50)
end
Zakładki