• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Action Updated Item Seller

Synnical

Mapper
Joined
Feb 4, 2010
Messages
458
Reaction score
183
Location
Midland, Ontario, Canada
So I saw @God Mythera posted a version of this at: https://otland.net/threads/tfs-0-3-6-0-4-item-seller-v1-0.240846/#post-2336531

I am by no means a scripter, far from it just simple enough to input extra items so if i forgot any information please be gentle :p

I took his version a while back and modified to include most items in-game that are sell-able, as well as sorted them and most items are accurate to real tibia prices, however some like gems I slacked on.

Add to actions.xml
Code:
<action itemid="24116" script="other/magicalpearl.lua" />

actions/scripts/others/magicalpearl.lua
Code:
local items = {
-- Amulets
    [2136] = 33000, -- [Demonbone Amulet] = PriceOfItem
    [2171] = 2000, -- [Platinum Amulet] = PriceOfItem
    [2125] = 500, -- [Crystal Necklace] = PriceOfItem
    [2173] = 40000, -- [Amulet Of Loss] = PriceOfItem
    [2172] = 0100, -- [Bronze Amulet] = PriceOfItem
    [2170] = 0100, -- [Silver Amulet] = PriceOfItem
    [2161] = 0100, -- [Strange Talisman] = PriceOfItem
    [2197] = 0100, -- [Stone Skin Amulet] = PriceOfItem
    [2198] = 0100, -- [Elven Amulet] = PriceOfItem
    [2199] = 0100, -- [Garlic Necklace] = PriceOfItem
    [2200] = 0100, -- [Protection Amulet] = PriceOfItem
    [2201] = 0100, -- [Dragon Necklace] = PriceOfItem
    [2130] = 3000, -- [Golden Amulet] = PriceOfItem
    [2131] = 3000, -- [Star Amulet] = PriceOfItem
    [2133] = 2000, -- [Ruby Necklace] = PriceOfItem
    [2135] = 0200, -- [Scarab Amulet] = PriceOfItem
    [2142] = 0200, -- [Ancient Amulet] = PriceOfItem
    [7887] = 2500, -- [Terra Amulet] = PriceOfItem
    [7888] = 2500, -- [Glacier Amulet] = PriceOfItem
    [7889] = 2500, -- [Lightning Pendant] = PriceOfItem
    [7890] = 2500, -- [Magma Amulet] = PriceOfItem
    [15403] = 3000, -- [Necklace Of The Deep] = PriceOfItem
    [23541] = 5000, -- [Gearwheel Chain] = PriceOfItem
    [23554] = 2000, -- [Glooth Amulet] = PriceOfItem
   
-- Helmets
   [2491] = 3000, -- [Crown Helmet] = PriceOfItem
   [3972] = 15500, -- [Beholder Helmet] = PriceOfItem
   [2462] = 700, -- [Devil Helmet] = PriceOfItem
   [7902] = 2500, -- [Glacier Mask] = PriceOfItem
   [7461] = 600, -- [Krimhorn Helmet] = PriceOfItem
   [7901] = 2500, -- [Lightning Headband] = PriceOfItem
   [7900] = 2500, -- [Magma Monocle] = PriceOfItem
   [6096] = 700, -- [Pirate Hat] = PriceOfItem
   [7462] = 900, -- [Devil Helmet] = PriceOfItem
   [5741] = 40000, -- [Skull Helmet] = PriceOfItem
   [7903] = 2500, -- [Terra Hood] = PriceOfItem
   [2498] = 30000, -- [Royal Helmet] = PriceOfItem
   [7459] = 1500, -- [Pair Of Earmuffs] = PriceOfItem
   [3971] = 900, -- [Charmer's Tiara] = PriceOfItem
   [2490] = 250, -- [Dark Helmet] = PriceOfItem
   [2482] = 20, -- [Studded Helmet] = PriceOfItem
   [2481] = 20, -- [Soldier Helmet] = PriceOfItem
   [2479] = 500, -- [Strange Helmet] = PriceOfItem
   [2475] = 6000, -- [Warrior Helmet] = PriceOfItem
   [2473] = 60, -- [Viking Helmet] = PriceOfItem
   [2457] = 293, -- [Steel Helmet] = PriceOfItem
   [2458] = 17, -- [Chain Helmet] = PriceOfItem
   [2459] = 150, -- [Iron Helmet] = PriceOfItem
   [2460] = 30, -- [Brass Helmet] = PriceOfItem
   [2497] = 6000, -- [Crusader Helmet] = PriceOfItem
   [2323] = 5000, -- [Hat Of The Mad] = PriceOfItem
   [5917] = 150, -- [Bandana] = PriceOfItem
   [23536] = 11000, -- [Rubber Cap] = PriceOfItem
   [20132] = 2000, -- [Helmet Of The Lost] = PriceOfItem
   
-- Armors
   [2487] = 12000, -- [Crown Armor] = PriceOfItem
   [2492] = 40000, -- [Dragon Scale Mail] = PriceOfItem
   [7897] = 11000, -- [Glacier Robe] = PriceOfItem
   [2466] = 18500, -- [Golden Armor] = PriceOfItem
   [8873] = 4000, -- [Hibicus Dress] = PriceOfItem
   [3968] = 1000, -- [Leopard Armor] = PriceOfItem
   [7898] = 11000, -- [Lightning Robe] = PriceOfItem
   [7899] = 11000, -- [Magma Coat] = PriceOfItem
   [7463] = 8000, -- [Mammoth Fur Cape] = PriceOfItem
   [8891] = 16000, -- [Paladin Armor] = PriceOfItem
   [6095] = 500, -- [Pirate Shirt] = PriceOfItem
   [8889] = 18000, -- [Skullcracker Armor] = PriceOfItem
   [7884] = 11000, -- [Terra Mantle] = PriceOfItem
   [2472] = 90000, -- [Magic Plate Armor] = PriceOfItem
   [2489] = 400, -- [Dark Armor] = PriceOfItem
   [2476] = 5000, -- [Knight Armor] = PriceOfItem
   [2463] = 400, -- [Plate Armor] = PriceOfItem
   [8878] = 16000, -- [Crystalline Armor] = PriceOfItem
   [8880] = 16000, -- [Swamplair Armor] = PriceOfItem
   [8885] = 55000, -- [Divine Plate] = PriceOfItem
   [2655] = 2000, -- [Red Robe] = PriceOfItem
   [2656] = 10000, -- [Blue Robe] = PriceOfItem
   [8892] = 200, -- [Ethno Coat] = PriceOfItem
   [2652] = 5, -- [Green Tunic] = PriceOfItem
   [2464] = 70, -- [Chain Armor] = PriceOfItem
   [8869] = 50000, -- [Greenwood Coat] = PriceOfItem
   [8871] = 6000, -- [Focus Cape] = PriceOfItem
   [8872] = 500, -- [Belted Cape] = PriceOfItem
   [2465] = 150, -- [Brass Armor] = PriceOfItem
   [2483] = 75, -- [Scale Armor] = PriceOfItem
   [2484] = 25, -- [Studded Armor] = PriceOfItem
   [2485] = 3, -- [Doublet] = PriceOfItem
   [2486] = 900, -- [Noble Armor] = PriceOfItem
   [23537] = 6000, -- [Mooh'Tah Plate] = PriceOfItem
   [21706] = 4000, -- [Goo Shell] = PriceOfItem
   [15489] = 15000, -- [Calopteryx Cape] = PriceOfItem
   [21692] = 1500, -- [Albino Plate] = PriceOfItem
   [20109] = 7000, -- [Buckle] = PriceOfItem
   [23538] = 10000, -- [Heat Core] = PriceOfItem
   [23535] = 7000, -- [Glooth Cape] = PriceOfItem
   
-- Legs
   [2488] = 12000, -- [Crown Legs] = PriceOfItem
   [2477] = 4000, -- [Knight Legs] = PriceOfItem
   [7896] = 11000, -- [Glacier Kilt] = PriceOfItem
   [7895] = 11000, -- [Lightning Legs] = PriceOfItem
   [7894] = 11000, -- [Magma Legs] = PriceOfItem
   [7464] = 800, -- [Mammoth Fur Shorts] = PriceOfItem
   [5918] = 600, -- [Pirate Knee Breeches] = PriceOfItem
   [7885] = 11000, -- [Terra Legs] = PriceOfItem
   [2470] = 40000, -- [Golden Legs] = PriceOfItem
   [7730] = 15000, -- [Blue Legs] = PriceOfItem
   [2478] = 250, -- [Brass Legs] = PriceOfItem
   [2468] = 40, -- [Studded Legs] = PriceOfItem
   [2648] = 25, -- [Chain Legs] = PriceOfItem
   [2647] = 400, -- [Plate Legs] = PriceOfItem
   [23539] = 11000, -- [Alloy Legs] = PriceOfItem
   [15490] = 15000, -- [Grasshopper Legs] = PriceOfItem
   
-- Boots
    [2195] = 30000, -- [Boots Of Haste] = PriceOfItem
    [3982] = 2000, -- [Crocodile Boots] = PriceOfItem
    [7457] = 3000, -- [Fur Boots] = PriceOfItem
    [7892] = 2500, -- [Glacier Shoes] = PriceOfItem
    [7893] = 2500, -- [Lightning Boots] = PriceOfItem
    [7891] = 2500, -- [Magma Boots] = PriceOfItem
    [2641] = 3000, -- [Patched Boots] = PriceOfItem
    [5462] = 700, -- [pirate boots] = PriceOfItem
    [2645] = 30000, -- [Steel Boots] = PriceOfItem
    [7886] = 2500, -- [Terra Boots] = PriceOfItem
    [23540] = 2000, -- [Metal Spats] = PriceOfItem
   
-- Shields
   [2519] = 8000, -- [Crown Shield] = PriceOfItem
   [2541] = 260, -- [Bone Shield] = PriceOfItem
   [2535] = 5000, -- [Castle Shield] = PriceOfItem
   [2521] = 350, -- [Dark Shield] = PriceOfItem
   [2520] = 30000, -- [Demon Shield] = PriceOfItem
   [2536] = 8000, -- [Medusa Shield] = PriceOfItem
   [7460] = 1500, -- [Norse Shield] = PriceOfItem
   [2540] = 2500, -- [Scarab Shield] = PriceOfItem
   [6131] = 350, -- [Tortoise Shield] = PriceOfItem
   [2514] = 50000, -- [Mastermind Shield] = PriceOfItem
   [3974] = 2000, -- [Sentinal Shield] = PriceOfItem
   [3975] = 2000, -- [Salamander Shield] = PriceOfItem
   [3973] = 450, -- [Tusk Shield] = PriceOfItem
   [2509] = 80, -- [Steel Shield] = PriceOfItem
   [2510] = 35, -- [Plate Shield] = PriceOfItem
   [2511] = 40, -- [Brass Shield] = PriceOfItem
   [2512] = 5, -- [Wooden Shield] = PriceOfItem
   [2513] = 95, -- [Battle Shield] = PriceOfItem
   [2515] = 3000, -- [Guardian Shield] = PriceOfItem
   [2516] = 4000, -- [Dragon Shield] = PriceOfItem
   [2518] = 1200, -- [Bonelord Shield] = PriceOfItem
   [2524] = 1500, -- [Ornamented Shield] = PriceOfItem
   [2525] = 100, -- [Dwarven Shield] = PriceOfItem
   [2526] = 15, -- [Studded Shield] = PriceOfItem
   [2528] = 8000, -- [Tower Shield] = PriceOfItem
   [2529] = 800, -- [Black Shield] = PriceOfItem
   [2530] = 50, -- [Copper Shield] = PriceOfItem
   [2532] = 900, -- [Ancient Shield] = PriceOfItem
   [2533] = 3000, -- [Griffan Shield] = PriceOfItem
   [2534] = 15000, -- [Vampire Shield] = PriceOfItem
   [23546] = 3000, -- [Mino Shield] = PriceOfItem
   [15453] = 9000, -- [Warrior's Shield] = PriceOfItem
   [20090] = 250, -- [Spike Shield] = PriceOfItem
   [15491] = 32000, -- [Carapace Shield] = PriceOfItem
      
}

function onUse(cid, item, fromPosition, itemEx, toPosition)

     local x = items[itemEx.itemid]
     if x then
         doRemoveItem(itemEx.uid, 1)
         doPlayerAddMoney(cid, x)
         local info = getItemRWInfo(itemEx.itemid)
        doPlayerSendTextMessage(cid, MESSAGE_EVENT_ADVANCE, "Your item has been sold.")
        doSendMagicEffect(getThingPos(cid), CONST_ME_THUNDER)
     else
         doPlayerSendCancel(cid, "This item could not be sold.")
         doSendMagicEffect(getThingPos(cid), CONST_ME_GROUNDSHAKER)
     end
     return true
end
 
You'll also have to add these, I had to cut them since it wouldn't let me post more than 10k characters :<

Code:
-- Spellbooks
    [8902] = 18000, -- [Spellbook Of Mind Control] = PriceOfItem
    [8901] = 7000, -- [Spellbook Of Warding] = PriceOfItem
    [8904] = 36000, -- [Spellscroll Of Prophecies] = PriceOfItem
    [8900] = 4000, -- [Spellbook Of Enlightenment] = PriceOfItem
    [8903] = 16000, -- [Spellbok Of Lost Souls] = PriceOfItem
   
-- Swords
    [7404] = 20000, -- [Assassin Dagger] = PriceOfItem
    [7403] = 35000, -- [Berserker] = PriceOfItem
    [7449] = 1100, -- [Crystal Sword] = PriceOfItem
    [7382] = 36000, -- [Demonrage Sword] = PriceOfItem
    [7402] = 16000, -- [Dragon Slayer] = PriceOfItem
    [2438] = 8000, -- [Epee] = PriceOfItem
    [2442] = 300, -- [Heavy Machete] = PriceOfItem
    [7386] = 11000, -- [Mercenary Sword] = PriceOfItem
    [7384] = 30000, -- [Mystic Blade] = PriceOfItem
    [7418] = 35000, -- [Nightmare Blade] = PriceOfItem
    [7383] = 25000, -- [Relic Sword] = PriceOfItem
    [2402] = 500, -- [Silver Dagger] = PriceOfItem
    [7408] = 2500, -- [Wyvern Fang] = PriceOfItem
    [2393] = 15000, -- [Giant Sword] = PriceOfItem
    [2376] = 25, -- [Sword] = PriceOfItem
    [2377] = 450, -- [Two-Handed Sword] = PriceOfItem
    [2450] = 20, -- [Bone Sword] = PriceOfItem
    [2383] = 1000, -- [Spike Sword] = PriceOfItem
    [2385] = 12, -- [Sabre] = PriceOfItem
    [2392] = 4000, -- [Fire Sword] = PriceOfItem
    [2395] = 118, -- [Carlin Sword] = PriceOfItem
    [2396] = 1000, -- [Ice Rapier] = PriceOfItem
    [2397] = 51, -- [Longsword] = PriceOfItem
    [7385] = 200, -- [Crimson Sword] = PriceOfItem
    [7390] = 40000, -- [The Justice Seeker] = PriceOfItem
    [7391] = 16000, -- [Thaian Sword] = PriceOfItem
    [7406] = 6000, -- [Blacksteel Sword] = PriceOfItem
    [2406] = 10, -- [Short Sword] = PriceOfItem
    [2407] = 6000, -- [Bright Sword] = PriceOfItem
    [2409] = 900, -- [Serpent Sword] = PriceOfItem
    [2411] = 50, -- [Poison Dagger] = PriceOfItem
    [2412] = 35, -- [Katana] = PriceOfItem
    [2413] = 500, -- [Broadsword] = PriceOfItem
    [7417] = 45000, -- [Runed Sword] = PriceOfItem
    [2419] = 150, -- [Scimitar] = PriceOfItem
    [7416] = 30000, -- [Bloody Edge] = PriceOfItem
    [7407] = 14000, -- [Haunted Blade] = PriceOfItem
    [18450] = 30000, -- [Crystalline Sword] = PriceOfItem
    [23550] = 1500, -- [Glooth Blade] = PriceOfItem
    [20092] = 500, -- [Ratana] = PriceOfItem
    [23548] = 2500, -- [Cowtana] = PriceOfItem
   
-- Clubs
    [7414] = 18000, -- [Abyss Hammer] = PriceOfItem
    [7379] = 2500, -- [Brutetamer's Staff ] = PriceOfItem
    [7426] = 8000, -- [Amber Staff] = PriceOfItem
    [7427] = 12000, -- [Chaos Mace] = PriceOfItem
    [7415] = 30000, -- [Cranial Basher] = PriceOfItem
    [2439] = 450, -- [Daramanian Mace] = PriceOfItem
    [7387] = 3000, -- [Diamond Sceptre] = PriceOfItem
    [7430] = 3300, -- [Dragonbone Staff] = PriceOfItem
    [7432] = 1100, -- [Furry Club] = PriceOfItem
    [2444] = 30000, -- [Hammer Of Wrath] = PriceOfItem
    [2452] = 50000, -- [Heavy Mace] = PriceOfItem
    [7422] = 25000, -- [Jade Hammer] = PriceOfItem
    [7424] = 8000, -- [Lunar Staff] = PriceOfItem
    [7381] = 800, -- [Mammoth Whopper] = PriceOfItem
    [7452] = 6000, -- [Spiked Squelcher] = PriceOfItem
    [7425] = 850, -- [Taurus Mace] = PriceOfItem
    [7437] = 7000, -- [Sapphire Hammer] = PriceOfItem
    [2434] = 2000, -- [Dragon Hammer] = PriceOfItem
    [2398] = 30, -- [Mace] = PriceOfItem
    [2394] = 90, -- [Morning Star] = PriceOfItem
    [2401] = 1, -- [Staff] = PriceOfItem
    [2417] = 120, -- [Battle Hammer] = PriceOfItem
    [2423] = 170, -- [Clerical Mace] = PriceOfItem
    [2424] = 40000, -- [Silver Mace] = PriceOfItem
    [7410] = 20000, -- [Queen's Sceptre] = PriceOfItem
    [7421] = 22000, -- [Onyx Flail] = PriceOfItem
    [2436] = 6000, -- [Skull Staff] = PriceOfItem
    [7451] = 10000, -- [Shadow Sceptre] = PriceOfItem
    [7428] = 10000, -- [Bonebreaker] = PriceOfItem
    [2445] = 12000, -- [Crystal Mace] = PriceOfItem
    [2448] = 10, -- [Studded Club] = PriceOfItem
    [2449] = 5, -- [Bone Club] = PriceOfItem
    [7429] = 40000, -- [Blessed Sceptre] = PriceOfItem
    [2453] = 42000, -- [Arcane Staff] = PriceOfItem
    [7431] = 50000, -- [Demonbone] = PriceOfItem
    [8928] = 60000, -- [Obsidian Truncheon] = PriceOfItem
    [2391] = 1200, -- [War Hammer] = PriceOfItem
    [7392] = 6000, -- [Orcish Maul] = PriceOfItem
    [15400] = 4000, -- [Deepling Staff] = PriceOfItem
    [13838] = 2000, -- [Heavy Trident] = PriceOfItem
    [15647] = 7000, -- [Deepling Squelcher] = PriceOfItem
    [18452] = 45000, -- [Mycological Mace] = PriceOfItem
    [23549] = 1500, -- [Glooth Club] = PriceOfItem
    [23542] = 9000, -- [Metal Bat] = PriceOfItem
    [20139] = 300, -- [Spiky Club] = PriceOfItem
    [23543] = 2500, -- [Glooth Whip] = PriceOfItem
    [23544] = 14000, -- [Moohtant Cudgel] = PriceOfItem
    [20104] = 40, -- [Swampling Club] = PriceOfItem
   
-- Axes
    [3962] = 2500, -- [Beastslayer Axe] = PriceOfItem
    [2440] = 2000, -- [Daramanian Axe] = PriceOfItem
    [2427] = 11000, -- [Guardian Halberd] = PriceOfItem
    [7389] = 30000, -- [Heroic Axe] = PriceOfItem
    [2381] = 400, -- [Halberd] = PriceOfItem
    [7388] = 30000, -- [Vile Axe] = PriceOfItem
    [2454] = 16000, -- [War Axe] = PriceOfItem
    [2426] = 3000, -- [Naginata] = PriceOfItem
    [7456] = 9000, -- [Noble Axe] = PriceOfItem
    [6553] = 45000, -- [Ruthless Axe] = PriceOfItem
    [2432] = 8000, -- [Fire Axe] = PriceOfItem
    [2418] = 1000, -- [Golden Sickle] = PriceOfItem
    [7413] = 4000, -- [Titan Axe] = PriceOfItem
    [7412] = 18000, -- [Butcher's Axe] = PriceOfItem
    [2386] = 7, -- [Axe] = PriceOfItem
    [2387] = 260, -- [Double Axe] = PriceOfItem
    [2388] = 25, -- [Hatchet] = PriceOfItem
    [2414] = 9000, -- [Dragon Lance] = PriceOfItem
    [2428] = 350, -- [Orcish Axe] = PriceOfItem
    [2425] = 200, -- [Obsidian Lance] = PriceOfItem
    [7434] = 40000, -- [Royal Axe] = PriceOfItem
    [7454] = 3000, -- [Glorious Axe] = PriceOfItem
    [7436] = 5000, -- [Angelic Axe] = PriceOfItem
    [2429] = 185, -- [Barbarian Axe] = PriceOfItem
    [2430] = 2000, -- [Knight Axe] = PriceOfItem
    [2435] = 1500, -- [Dwarven Axe] = PriceOfItem
    [2378] = 80, -- [Battle Axe] = PriceOfItem
    [2441] = 500, -- [Daramian Axe] = PriceOfItem
    [2380] = 5, -- [Hand Axe] = PriceOfItem
    [7380] = 6000, -- [Headchopper] = PriceOfItem
    [7419] = 15000, -- [Dreaded Cleaver] = PriceOfItem
    [2405] = 3, -- [Sickle] = PriceOfItem
    [15451] = 11000, -- [Warrior's Axe] = PriceOfItem
    [15404] = 40000, -- [Deepling Axe] = PriceOfItem
    [15454] = 9000, -- [Guardian Axe] = PriceOfItem
    [15492] = 17000, -- [Hive Scythe] = PriceOfItem
    [23551] = 1500, -- [Glooth Axe] = PriceOfItem
    [20093] = 300, -- [Life Preserver] = PriceOfItem
    [23547] = 12000, -- [Execowtioner Axe] = PriceOfItem
   
-- Distance
    [7368] = 100, -- [Assassin Star] = PriceOfItem
    [2456] = 0300, -- [Bow] = PriceOfItem
    [2455] = 0360, -- [Crossbow] = PriceOfItem
    [7438] = 4000, -- [Elven Bow] = PriceOfItem
    [8849] = 10000, -- [Modified Crossbow] = PriceOfItem
    [15643] = 28000, -- [Hive Bow] = PriceOfItem
    [18454] = 35000, -- [Mycological Bow] = PriceOfItem
    [15644] = 12000, -- [Ornate Crossbow] = PriceOfItem
    [18453] = 35000, -- [Crystal Crossbow] = PriceOfItem
   
-- Wands
    [8921] = 1500, -- [Wand Of Draconia] = PriceOfItem
    [8922] = 4400, -- [Wand Of Voodoo] = PriceOfItem
    [2187] = 3000, -- [Wand Of Inferno] = PriceOfItem
    [2189] = 2000, -- [Wand Of Cosmic Energy] = PriceOfItem
    [2188] = 1500, -- [Wand Of Decay] = PriceOfItem
    [2190] = 100, -- [Wand Of Vortex] = PriceOfItem
    [2191] = 200, -- [Wand Of Dragonbreath] = PriceOfItem
    [8920] = 3600, -- [Wand Of Starstorm] = PriceOfItem
    [2182] = 100, -- [Snakebite Rod] = PriceOfItem
    [2181] = 2000, -- [Terra Rod] = PriceOfItem
    [2185] = 1000, -- [Necrotic Rod] = PriceOfItem
    [2186] = 200, -- [Moonlight Rod] = PriceOfItem
    [2183] = 3000, -- [Hailstorm Rod] = PriceOfItem
    [8911] = 1500, -- [Northwind Rod] = PriceOfItem
    [8910] = 4400, -- [Underworld Rod] = PriceOfItem
    [8912] = 3600, -- [Springsprout Rod] = PriceOfItem
     
-- Trophies
    [7399] = 16000, -- [Dragon Lord Trophy] = PriceOfItem
   
-- Rings
    [2179] = 8000, -- [Gold Ring] = PriceOfItem
    [6300] = 1000, -- [Death Ring] = PriceOfItem
    [2207] = 0100, -- [Sword Ring] = PriceOfItem
    [2208] = 0100, -- [Axe Ring] = PriceOfItem
    [2209] = 0100, -- [Club Ring] = PriceOfItem
    [2213] = 0100, -- [Dwarven Ring] = PriceOfItem
    [2214] = 0100, -- [Ring Of Healing] = PriceOfItem
    [2121] = 0100, -- [Wedding Ring] = PriceOfItem
    [2123] = 0100, -- [Ring Of The Sky] = PriceOfItem
    [2124] = 0100, -- [Crystal Ring] = PriceOfItem
    [2127] = 0100, -- [Emerald Bangle] = PriceOfItem
    [2164] = 0100, -- [Might Ring] = PriceOfItem
    [2165] = 0100, -- [Stealth Ring] = PriceOfItem
    [2166] = 0100, -- [Power Ring] = PriceOfItem
    [2167] = 0100, -- [Energy Ring] = PriceOfItem
    [2168] = 0100, -- [Life Ring] = PriceOfItem
    [2169] = 0100, -- [Time Ring] = PriceOfItem
 
Code:
-- Gems
    [2155] = 5000, -- [Green Gem] = PriceOfItem
    [2158] = 10000, -- [Blue Gem] = PriceOfItem
    [2156] = 1000, -- [Red Gem] = PriceOfItem
    [2153] = 10000, -- [Violet Gem] = PriceOfItem
    [2154] = 2000, -- [Yellow Gem] = PriceOfItem
    [2150] = 300, -- [Small Amethyst] = PriceOfItem
    [2149] = 300, -- [Small Emerald] = PriceOfItem
    [2146] = 300, -- [Small Sapphire] = PriceOfItem
    [2145] = 300, -- [Small Diamond] = PriceOfItem
    [2147] = 300, -- [Small Ruby] = PriceOfItem
    [9971] = 5000, -- [Gold Ingot] = PriceOfItem
    [2143] = 300, -- [White Pearl] = PriceOfItem
    [2144] = 300, -- [Black Pearl] = PriceOfItem
    [2177] = 500, -- [Life Crystal] = PriceOfItem
    [2151] = 500, -- [Talon] = PriceOfItem
   
-- Other
    [2033] = 400, -- [Golden Mug] = PriceOfItem
    [6500] = 900, -- [Demonic Essence] = PriceOfItem
    [5480] = 2000, -- [Cat's Paw] = PriceOfItem
    [5710] = 0400, -- [Light Shovel] = PriceOfItem
    [2420] = 15, -- [Machete] = PriceOfItem
    [20108] = 4000, -- [Pair Of Iron Fists] = PriceOfItem
 
Hi!
It's possible to click on the item if you selling and sell all counts?

Example:
If i have 100 magic plate armors after click on the spellwand and click in the mpa's selling all?
 
Back
Top