• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[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