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!

[Help] How to understand Itemdrop.txt (S16 by MUDevs)

Newbie Spellweaver
Joined
Apr 3, 2020
Messages
40
Reaction score
2
the file look like this:
Code:
//Index   Level   Grade   Option0   Option1   Option2   Option3   Option4   Option5   Option6   Duration   MapNumber   MonsterClass   MonsterLevelMin   MonsterLevelMax   DropRate   Comment

6159      0       0       *         *         *         *         *         *         *         0          *           *              12                150               1000       //Jewel of Chaos

It's easy to understand these fields:"Index Level Grade Duration MapNumber MonsterClass MonsterLevelMin MonsterLevelMax DropRate".

But it's very difficult to understand "Option0 Option1 Option2 Option3 Option4 Option5 Option6".
the option4 seems to set exc value.
i want to set the monster drop an item with only one exc prop,but i tried 0 to 6, and the item had 2 exc pro at least.
 
Voyager of Time and Space
Joined
Sep 27, 2008
Messages
598
Reaction score
159
Option 0-6 all link to ItemOptionRate.txt in Data/Item.

Lets say in Excellent you want max 1-3 opts. then in ItemOptionRate you will pick //Exc Option (EventItemBag) (1~3) which is #21

So example Kris with this usecase
Code:
//Index   Level   Grade   Option0   Option1   Option2   Option3   Option4   Option5   Option6   Duration   MapNumber   MonsterClass   MonsterLevelMin   MonsterLevelMax   DropRate   Comment
0000      0       0       *         *         *         *         21         *         *         0          *           *              12                150               1000       //Kris

Good luck buddy.
 
Upvote 0
Newbie Spellweaver
Joined
Apr 3, 2020
Messages
40
Reaction score
2
Option 0-6 all link to ItemOptionRate.txt in Data/Item.

Lets say in Excellent you want max 1-3 opts. then in ItemOptionRate you will pick //Exc Option (EventItemBag) (1~3) which is #21

So example Kris with this usecase
Code:
//Index   Level   Grade   Option0   Option1   Option2   Option3   Option4   Option5   Option6   Duration   MapNumber   MonsterClass   MonsterLevelMin   MonsterLevelMax   DropRate   Comment
0000      0       0       *         *         *         *         21         *         *         0          *           *              12                150               1000       //Kris

Good luck buddy.

thx a lot!
 
Upvote 0
Newbie Spellweaver
Joined
Apr 3, 2020
Messages
40
Reaction score
2
Option 0-6 all link to ItemOptionRate.txt in Data/Item.

Lets say in Excellent you want max 1-3 opts. then in ItemOptionRate you will pick //Exc Option (EventItemBag) (1~3) which is #21

So example Kris with this usecase
Code:
//Index   Level   Grade   Option0   Option1   Option2   Option3   Option4   Option5   Option6   Duration   MapNumber   MonsterClass   MonsterLevelMin   MonsterLevelMax   DropRate   Comment
0000      0       0       *         *         *         *         21         *         *         0          *           *              12                150               1000       //Kris

Good luck buddy.

thx again.i almost understand how it works.
but what does the value "*" or "-1" mean,there is no "*" or "-1" in ItemOptionRate.txt
 
Upvote 0
Back
Top