/* -- ############################################################################################################# -- -- -- ____ __ ______ __ ____ __ -- /\ _`\ /\ \__ __ /\__ _\/\ \ /\ _`\ /\ \__ -- \ \,\L\_\ \ ,_\ __ __ __ /\_\ __ ___\/_/\ \/\ \ \___ __\ \ \L\ \ __ ____\ \ ,_\ -- \/_\__ \\ \ \/ /\ \/\ \ /'_ `\/\ \ /'__`\ /' _ `\ \ \ \ \ \ _ `\ /'__`\ \ _ <' /'__`\ /',__\\ \ \/ -- /\ \L\ \ \ \_\ \ \_\ \/\ \L\ \ \ \/\ \L\.\_/\ \/\ \ \ \ \ \ \ \ \ \/\ __/\ \ \L\ \/\ __//\__, `\\ \ \_ -- \ `\____\ \__\\/`____ \ \____ \ \_\ \__/.\_\ \_\ \_\ \ \_\ \ \_\ \_\ \____\\ \____/\ \____\/\____/ \ \__\ -- \/_____/\/__/ `/___/> \/___L\ \/_/\/__/\/_/\/_/\/_/ \/_/ \/_/\/_/\/____/ \/___/ \/____/\/___/ \/__/ -- /\___/ /\____/ -- \/__/ \_/__/ http://stygianthebest.github.io -- -- ############################################################################################################# -- -- -- Item Pricing Template -- By StygianTheBest -- -- This is a template I use for changing the buy and sell price on items. -- -- ############################################################################################################# -- */ USE world; -- ######################################################-- -- CURRENCY CONVERSION -- ######################################################-- SET @1C :=1; -- 1 Copper SET @1S :=100; -- 1 Silver SET @5S :=500; -- 5 Silver SET @10S :=1000; -- 10 Silver SET @25S :=2500; -- 25 Silver SET @50S :=5000; -- 50 Silver SET @75S :=7500; -- 75 Silver SET @1G :=10000; -- 1 Gold SET @2G :=20000; -- 2 Gold SET @3G :=30000; -- 3 Gold SET @4G :=40000; -- 4 Gold SET @5G :=50000; -- 5 Gold SET @10G :=100000; -- 10 Gold SET @15G :=150000; -- 15 Gold SET @18G :=180000; -- 18 Gold SET @20G :=200000; -- 20 Gold SET @25G :=250000; -- 25 Gold SET @30G :=300000; -- 30 Gold SET @40G :=400000; -- 40 Gold SET @50G :=500000; -- 50 Gold SET @75G :=750000; -- 75 Gold SET @100G :=1000000; -- 100 Gold SET @250G :=2500000; -- 250 Gold SET @300G :=3000000; -- 300 Gold SET @350G :=3500000; -- 350 Gold SET @375G :=3750000; -- 375 Gold SET @500G :=5000000; -- 500 Gold SET @750G :=7500000; -- 750 Gold SET @1000G :=10000000; -- 1000 Gold SET @1500G :=15000000; -- 1500 Gold SET @2500G :=25000000; -- 2500 Gold SET @5000G :=50000000; -- 5000 Gold SET @7500G :=75000000; -- 7500 Gold SET @10000G :=100000000; -- 10000 Gold SET @12500G :=125000000; -- 12500 Gold SET @15000G :=150000000; -- 15000 Gold SET @20000G :=200000000; -- 20000 Gold SET @25000G :=250000000; -- 20000 Gold SET @50000G :=500000000; -- 50000 Gold SET @75000G :=750000000; -- 75000 Gold -- ######################################################-- -- ITEMS -- ######################################################-- UPDATE item_template SET sellprice=@1C, buyprice=@1C WHERE entry = 13262; -- Ashbringer UPDATE item_template SET sellprice=@1C, buyprice=@1C WHERE entry = 22630; -- Atiesh, Greatstaff of the Guardian -- END OF LINE