rayleigh Posted March 9, 2016 Group: Members Topic Count: 57 Topics Per Day: 0.01 Content Count: 220 Reputation: 0 Joined: 09/05/13 Last Seen: January 18, 2023 Share Posted March 9, 2016 I want to edit the drop rate of a certain item like ygg berry and ygg seed 1% on all the mobs and monster that drop it. I already tried the search botton and google on how to edit this specific usable item. All that is showing is equips and drops on a certain mobs. I dont want my svn to be ruined and im just making sure of it. Can anyone help me? Thanks in advance. Newbie here btw. Quote Link to comment Share on other sites More sharing options...
Enthr Posted March 9, 2016 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 88 Reputation: 10 Joined: 01/15/16 Last Seen: January 18 Share Posted March 9, 2016 Well, if you only want to edit the drop rate of a single item... you have to edit all the monsters that drop that item, or do a src modification that in reality not worth it. Quote Link to comment Share on other sites More sharing options...
Trndsttr Posted March 9, 2016 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 31 Reputation: 0 Joined: 03/07/16 Last Seen: May 13, 2016 Share Posted March 9, 2016 db/mob_item_ratio.txt // Specific Item Drop Ratio Database // Overrides for global item_rate* values from conf/battle/drops.conf // // Structure of Database: // ItemID,Ratio{,MonsterID1,...,MonsterID10} // // Result: // ItemID base drop rates defined in mob_db will not get multiplied // by global item_rate* values (aka drop rates) from // conf/battle/drops.conf. Instead Ratio will be used (100 = 1x). // If no MonsterID is specified, all monsters will be affected, // otherwise only listed ones. // // Examples: // 909,100 // Jellopies from monsters will drop with 1x drop rate regardless of global drop rate // 909,1000 // Jellopies from monsters will drop with 10x drop rate regardless of global drop rate // 909,100,1002 // Jellopies from Porings will drop with 1x drop rate. Other monsters that drop Jellopies are unaffected (use global drop rate). // // Notes: // - By default you can list up to 10 MonsterIDs per ItemID. // It can be changed in src/map/mob.c by adjusting MAX_ITEMRATIO_MOBS. // - Only ItemIDs up to MAX_ITEMDB are supported (default: 32768). // - Does not override item_drop_*_min/max settings. // - Does not affect card/item-granted drops. To adjust card/item-granted // drops, edit them in item_db. // - Does affect MVP prizes and Treasure Boxes. // - You can add only ONE line per ItemID. If you need various ratios // for different monsters, override drop rate with Ratio=100 and edit // base drop rates in mob_db. // - This file is reloaded by @reloadmobdb. Quote Link to comment Share on other sites More sharing options...
rayleigh Posted March 9, 2016 Group: Members Topic Count: 57 Topics Per Day: 0.01 Content Count: 220 Reputation: 0 Joined: 09/05/13 Last Seen: January 18, 2023 Author Share Posted March 9, 2016 (edited) db/mob_item_ratio.txt // Specific Item Drop Ratio Database // Overrides for global item_rate* values from conf/battle/drops.conf // // Structure of Database: // ItemID,Ratio{,MonsterID1,...,MonsterID10} // // Result: // ItemID base drop rates defined in mob_db will not get multiplied // by global item_rate* values (aka drop rates) from // conf/battle/drops.conf. Instead Ratio will be used (100 = 1x). // If no MonsterID is specified, all monsters will be affected, // otherwise only listed ones. // // Examples: // 909,100 // Jellopies from monsters will drop with 1x drop rate regardless of global drop rate // 909,1000 // Jellopies from monsters will drop with 10x drop rate regardless of global drop rate // 909,100,1002 // Jellopies from Porings will drop with 1x drop rate. Other monsters that drop Jellopies are unaffected (use global drop rate). // // Notes: // - By default you can list up to 10 MonsterIDs per ItemID. // It can be changed in src/map/mob.c by adjusting MAX_ITEMRATIO_MOBS. // - Only ItemIDs up to MAX_ITEMDB are supported (default: 32768). // - Does not override item_drop_*_min/max settings. // - Does not affect card/item-granted drops. To adjust card/item-granted // drops, edit them in item_db. // - Does affect MVP prizes and Treasure Boxes. // - You can add only ONE line per ItemID. If you need various ratios // for different monsters, override drop rate with Ratio=100 and edit // base drop rates in mob_db. // - This file is reloaded by @reloadmobdb. How will I edit this one sir? Thank you. For example I want my ygg berry and ygg seed to 1% only. all the monster that dropping it will only have 1% chance. Even the rates of my server is 5k/5k/5k Thanks in advance sir. Edited March 9, 2016 by rayleigh Quote Link to comment Share on other sites More sharing options...
Neffletics Posted March 9, 2016 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 149 Reputation: 24 Joined: 02/11/16 Last Seen: May 16, 2023 Share Posted March 9, 2016 607,100 //Yggdrasil Berry 608,100 //Yggdrasil Seed Add this to db/mob_item_ratio.txt That'll turn ygg berries and seeds' drop rate to 1x regardless if your server is 9999999999999k/9999999999999k/9999999999999k Quote Link to comment Share on other sites More sharing options...
Trndsttr Posted March 9, 2016 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 31 Reputation: 0 Joined: 03/07/16 Last Seen: May 13, 2016 Share Posted March 9, 2016 Check the notes and example. Quote Link to comment Share on other sites More sharing options...
rayleigh Posted March 9, 2016 Group: Members Topic Count: 57 Topics Per Day: 0.01 Content Count: 220 Reputation: 0 Joined: 09/05/13 Last Seen: January 18, 2023 Author Share Posted March 9, 2016 I made it into this // Specific Item Drop Ratio Database // Overrides for global item_rate* values from conf/battle/drops.conf // // Structure of Database: // ItemID,Ratio{,MonsterID1,...,MonsterID10} // // Result: // ItemID base drop rates defined in mob_db will not get multiplied // by global item_rate* values (aka drop rates) from // conf/battle/drops.conf. Instead Ratio will be used (100 = 1x). // If no MonsterID is specified, all monsters will be affected, // otherwise only listed ones. // // Examples: // 909,100 // Jellopies from monsters will drop with 1x drop rate regardless of global drop rate // 909,1000 // Jellopies from monsters will drop with 10x drop rate regardless of global drop rate // 909,100,1002 // Jellopies from Porings will drop with 1x drop rate. Other monsters that drop Jellopies are unaffected (use global drop rate). 607,100 //yggdrasil berry 608,100 //yggdrasil seed // Notes: // - By default you can list up to 10 MonsterIDs per ItemID. // It can be changed in src/map/mob.c by adjusting MAX_ITEMRATIO_MOBS. // - Only ItemIDs up to MAX_ITEMDB are supported (default: 32768). // - Does not override item_drop_*_min/max settings. // - Does not affect card/item-granted drops. To adjust card/item-granted // drops, edit them in item_db. // - Does affect MVP prizes and Treasure Boxes. // - You can add only ONE line per ItemID. If you need various ratios // for different monsters, override drop rate with Ratio=100 and edit // base drop rates in mob_db. // - This file is reloaded by @reloadmobdb. Is this correct sir? I add the script and remove the //. Thank you so much in advance. Quote Link to comment Share on other sites More sharing options...
rayleigh Posted March 12, 2016 Group: Members Topic Count: 57 Topics Per Day: 0.01 Content Count: 220 Reputation: 0 Joined: 09/05/13 Last Seen: January 18, 2023 Author Share Posted March 12, 2016 I made it into this // Specific Item Drop Ratio Database // Overrides for global item_rate* values from conf/battle/drops.conf // // Structure of Database: // ItemID,Ratio{,MonsterID1,...,MonsterID10} // // Result: // ItemID base drop rates defined in mob_db will not get multiplied // by global item_rate* values (aka drop rates) from // conf/battle/drops.conf. Instead Ratio will be used (100 = 1x). // If no MonsterID is specified, all monsters will be affected, // otherwise only listed ones. // // Examples: // 909,100 // Jellopies from monsters will drop with 1x drop rate regardless of global drop rate // 909,1000 // Jellopies from monsters will drop with 10x drop rate regardless of global drop rate // 909,100,1002 // Jellopies from Porings will drop with 1x drop rate. Other monsters that drop Jellopies are unaffected (use global drop rate). 607,100 //yggdrasil berry 608,100 //yggdrasil seed // Notes: // - By default you can list up to 10 MonsterIDs per ItemID. // It can be changed in src/map/mob.c by adjusting MAX_ITEMRATIO_MOBS. // - Only ItemIDs up to MAX_ITEMDB are supported (default: 32768). // - Does not override item_drop_*_min/max settings. // - Does not affect card/item-granted drops. To adjust card/item-granted // drops, edit them in item_db. // - Does affect MVP prizes and Treasure Boxes. // - You can add only ONE line per ItemID. If you need various ratios // for different monsters, override drop rate with Ratio=100 and edit // base drop rates in mob_db. // - This file is reloaded by @reloadmobdb. Is this correct sir? I add the script and remove the //. Thank you so much in advance. Is this correct sir?? Quote Link to comment Share on other sites More sharing options...
PandaLovesHamster Posted March 15, 2016 Group: Members Topic Count: 51 Topics Per Day: 0.01 Content Count: 452 Reputation: 34 Joined: 12/18/14 Last Seen: May 30, 2016 Share Posted March 15, 2016 // Jellopies from monsters will drop with 1x drop rate regardless of global drop rate Best way to actually check for it is to apply it to the server, do a reloaditemdb/reloadmobdb and then check the drop rate. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.