configuration

lazarix

Guest
Hey guys, i was just wondering how to change little things like exp rate and mob items like money and hp/mp potions dropped when they die, cause the exp on some of the servers is like x4 and most of the mobs drop 2k gold. my server seems to be working properly, but now i want to change things in it like that. any pointers?

Thanks,

LaZ
 

Zeph

Dedicated Member
Dedicated Member
Mar 29, 2003
102
0
113
To edit the EXP level

Open your monster db in the Enterprise manager.
Press the little white SQL button at the top and paste the following code into the window replacing the code already there.

UPDATE Monster
Set Exp = Exp * 5

This will set Exp to 5 times current values

UPDATE Monster
Set Exp = Exp / 5

This will set it back after you have used the 5 times option

Remember to backup your db before playing with it.

Update monster drops by editing the files in the following location C:\Mud3\Mir300\Envir\MonItems

if you want a mob to drop something create a file mobname.txt where mobname is the name of the mob you wish to alter the drop for.

1/10 itemname

the 1/10 means a 1 in 10 chance of dropping the item name where itemname is the item you wish the mob to drop. Put as many items in as you desire.

1/1 itemname should ensure an item is dropped

Hope this helps.