I agree with
Syilph and others .. crying for a wipe won\'t solve the problem that some people use unbalanced behaviours or bugs to get money.
But this game is not only related to trias!!!!
You may have millions of trias .. that won\'t help you much on increasing any stat without the propper amount of progres points.
Don\'t get me wrong .. I\'m anyway not happy about the unballanced system sometimes but I will not cry for a wipe. Because it took me a long hard run to build up my player, do all that quests, get all those glyphs, skill up magic ways etc. which is sad to do taht all again. and there are other points more related as just being able to buy better swords as well as a real role player is happy if he can kill an Ulbernaut by his own instead of being a Ulberheart of someone else.
Anyhow I took some time to look at the real market price of gold 600$/ounze and platinum 1100$/ounze.
So addapting that to PS ($ != trias) we maybe use 60 trias for 1 gold ore and 100 trias for one platinum ore. I think that is a fair price (instead of 8 trias)
So I got the following changes:
.. anyone with DB server acces might do ..
SELECT stat_type, name, weight, base_sale_price, item_type FROM item_stats WHERE name LIKE \'%ore%\' OR name LIKE \'%bare%\' OR name LIKE \'%ingot%\';
to get all the related lines .. and change them alike
UPDATE item_stats SET base_sale_price=\'10.0\' WHERE stat_type=\'B\' AND name=\'Iron Ore\';
UPDATE item_stats SET base_sale_price=\'15.0\' WHERE stat_type=\'B\' AND name=\'Coper Ore\';
UPDATE item_stats SET base_sale_price=\'20.0\' WHERE stat_type=\'B\' AND name=\'Silver Ore\';
UPDATE item_stats SET base_sale_price=\'60.0\' WHERE stat_type=\'B\' AND name=\'Gold Ore\';
UPDATE item_stats SET base_sale_price=\'100.0\' WHERE stat_type=\'B\' AND name=\'Platinum Ore\';
so simple melting of 8 ores (short), 10 ores and 12 ores (long) will rise the price of around 10% wich is nice but not as extreme than it is now and still fair because you don\'t need any skill to melt them.
UPDATE item_stats SET base_sale_price=\'88.0\' WHERE stat_type=\'B\' AND name=\'Short Iron Bar\';
UPDATE item_stats SET base_sale_price=\'132.0\' WHERE stat_type=\'B\' AND name=\'Short Coper Bar\';
UPDATE item_stats SET base_sale_price=\'176.0\' WHERE stat_type=\'B\' AND name=\'Short Silver Bar\';
UPDATE item_stats SET base_sale_price=\'528.0\' WHERE stat_type=\'B\' AND name=\'Short Gold Bar\';
UPDATE item_stats SET base_sale_price=\'880.0\' WHERE stat_type=\'B\' AND name=\'Short Platinum Bar\';
UPDATE item_stats SET base_sale_price=\'110.0\' WHERE stat_type=\'B\' AND name=\'Iron Bar\';
UPDATE item_stats SET base_sale_price=\'165.0\' WHERE stat_type=\'B\' AND name=\'Coper Bar\';
UPDATE item_stats SET base_sale_price=\'220.0\' WHERE stat_type=\'B\' AND name=\'Silver Bar\';
UPDATE item_stats SET base_sale_price=\'660.0\' WHERE stat_type=\'B\' AND name=\'Gold Bar\';
UPDATE item_stats SET base_sale_price=\'1100.0\' WHERE stat_type=\'B\' AND name=\'Platinum Bar\';
UPDATE item_stats SET base_sale_price=\'132.0\' WHERE stat_type=\'B\' AND name=\'Long Iron Bar\';
UPDATE item_stats SET base_sale_price=\'198.0\' WHERE stat_type=\'B\' AND name=\'Long Coper Bar\';
UPDATE item_stats SET base_sale_price=\'264.0\' WHERE stat_type=\'B\' AND name=\'Long Silver Bar\';
UPDATE item_stats SET base_sale_price=\'792.0\' WHERE stat_type=\'B\' AND name=\'Long Gold Bar\';
UPDATE item_stats SET base_sale_price=\'1320.0\' WHERE stat_type=\'B\' AND name=\'Long Platinum Bar\';
then 10 crafted ores melted and hammered will give a wrought ingot with price rise of around 40%
UPDATE item_stats SET base_sale_price=\'154.0\' WHERE stat_type=\'B\' AND name=\'Wrought Iron Ingot\';
UPDATE item_stats SET base_sale_price=\'231.0\' WHERE stat_type=\'B\' AND name=\'Wrought Coper Ingot\';
UPDATE item_stats SET base_sale_price=\'308.0\' WHERE stat_type=\'B\' AND name=\'Wrought Silver Ingot\';
UPDATE item_stats SET base_sale_price=\'924.0\' WHERE stat_type=\'B\' AND name=\'Wrought Gold Ingot\';
UPDATE item_stats SET base_sale_price=\'1540.0\' WHERE stat_type=\'B\' AND name=\'Wrought Platinum Ingot\';
so a \'Iron Ingot\' is still less worth than a good sword (200 trias) as well as a single ore like platinum is not as high as a crafted item like a sword, but all items are worth enough to dig them ..
I know that balancing is something which is ment to be done anytime later in game .. but to pull those lines on the MySQL server will only takes a couple of minutes and might stop some people crying around
