1. Open MS SQL Management Center and click on "New Query" (There is no need to select a table or something like that)
2. Type in the following lines:
Code:
Use Arcadia
Update dbo.MonsterResource
SET gold_drop_percentage=100,
gold_min=1000000,
gold_max=1000000,
gold_min_2=0,
gold_max_2=0
GO
3. Press "Execute"
4. Restart your server and type into your captain herlock console:
Code:
set game.gold_drop_rate 1
(You can edit the game.gold_drop_rate parameter in the gameserver.opt to set it permanently)
Every Mob will drop exactly 1Mio!
Additional:
-----------------------------------------------------------
game.gold_drop_rate 2 = every Mob will drop 2 Mio...
-----------------------------------------------------------
You can change the 1000000 in the SQL Statement to every value you want!
-----------------------------------------------------------
It's recommended to do a backup of your MonsterResource because this will change the gold_drop of every mob to 1000000 (Lvl 1 Mob=1000000 and Lvl 180 Boss=1000000). The easiest way to undo these changes is to restore the table^^
-----------------------------------------------------------