Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

How to add item into monster drops v15

Initiate Mage
Joined
Jan 10, 2006
Messages
65
Reaction score
3
This tutorial is for people like me that are new to this stuff.

How to add item to the list so players have the chance to have it droped from monsters?

1Find your propItem.txt
2.Open it.
3.Find your item of desire using CTRL+F and the name of the item.Example:
IDS_PROPITEM_TXT_008062 Shining Oricalkum

4.You need first part.Example: IDS_PROPITEM_TXT_008062, so you copy it.
5.Open Spec_Item.txt
6.Again CTRL+F and paste.Example: IDS_PROPITEM_TXT_008062
7.Then you need first part.Example: II_GEN_MAT_ORICHALCUM02
8.Open propDropEvent.inc
9.Copy one of the lines there and paste it.Example:
DropItem(II_GEN_FOO_COO_MEATSKEWER, 900000000, 0, -1, 1, 130);
10.Paste your item name.Now should look like this:
DropItem(II_GEN_MAT_ORICHALCUM02, 900000000, 0, -1, 1, 130);

First number is for the Drop Rate(900000000), fourth and fifth are for levels range(Level 1 to Level 130).Change it to your desire.
 
Joined
Apr 29, 2011
Messages
97
Reaction score
10
This is what a very short Tutorial.
About this its already been Released long time ago. I think you can find it here if you have the time on hitting the Search button.
And another thing. Not so informative for the Tutorial.
 
Back
Top