Jhosef Posted May 29, 2012 Group: Members Topic Count: 98 Topics Per Day: 0.02 Content Count: 299 Reputation: 5 Joined: 04/05/12 Last Seen: September 9, 2012 Share Posted May 29, 2012 i want to know how to set the mini boss drop rate Quote Link to comment Share on other sites More sharing options...
VyL0w Posted May 29, 2012 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 27 Reputation: 0 Joined: 05/12/12 Last Seen: December 30, 2014 Share Posted May 29, 2012 you can set it here \conf\battle\drops.txt Quote Link to comment Share on other sites More sharing options...
Jhosef Posted May 29, 2012 Group: Members Topic Count: 98 Topics Per Day: 0.02 Content Count: 299 Reputation: 5 Joined: 04/05/12 Last Seen: September 9, 2012 Author Share Posted May 29, 2012 where in that drop.txt?? Quote Link to comment Share on other sites More sharing options...
manabeast Posted May 29, 2012 Group: Members Topic Count: 138 Topics Per Day: 0.03 Content Count: 835 Reputation: 25 Joined: 11/22/11 Last Seen: December 4, 2012 Share Posted May 29, 2012 your server \conf\battle\drops.txt example:svn or 3Ceam\conf\battle\drops.txt Quote Link to comment Share on other sites More sharing options...
Nameless2you Posted May 29, 2012 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 351 Reputation: 52 Joined: 11/15/11 Last Seen: June 15, 2015 Share Posted May 29, 2012 I suppose manabeast is trying to say, drops.conf. Miniboss have the same "boss mode" as bosses therefore have the same drop rate. So you have to modify the boss drop rate. // The rate the common items are dropped (Items that are in the ETC tab, besides card) item_rate_common: 100 item_rate_common_boss: 100 item_drop_common_min: 1 item_drop_common_max: 10000 // The rate healing items are dropped (items that restore HP or SP) item_rate_heal: 100 item_rate_heal_boss: 100 item_drop_heal_min: 1 item_drop_heal_max: 10000 // The rate at which usable items (in the item tab) other then healing items are dropped. item_rate_use: 100 item_rate_use_boss: 100 item_drop_use_min: 1 item_drop_use_max: 10000 // The rate at which equipment is dropped. item_rate_equip: 100 item_rate_equip_boss: 100 item_drop_equip_min: 1 item_drop_equip_max: 10000 // The rate at which cards are dropped item_rate_card: 100 item_rate_card_boss: 100 item_drop_card_min: 1 item_drop_card_max: 10000 Quote Link to comment Share on other sites More sharing options...
Magnetix Posted May 29, 2012 Group: Members Topic Count: 6 Topics Per Day: 0.00 Content Count: 446 Reputation: 30 Joined: 12/08/11 Last Seen: October 13, 2024 Share Posted May 29, 2012 If you don't want your boss drop rate to be affected by the changes, you will have to do it manually. In order to do this, edit db>re/pre-re>mob_db.txt and find each mini bosses, edit the drop rates manually. Quote Link to comment Share on other sites More sharing options...
GM Takumirai Posted May 29, 2012 Group: Members Topic Count: 69 Topics Per Day: 0.01 Content Count: 592 Reputation: 31 Joined: 11/14/11 Last Seen: July 29, 2015 Share Posted May 29, 2012 use this - script Sample -1,{function CustomRateCard; OnNPCKillEvent: // CustomRateCard( <MobID>,<CardID>,<Rate> ); // Rate : 1 = 0.01% / 1000 = 10% / 10000 = 100% CustomRateCard( 1708,4399,100 ); CustomRateCard( 1115,4123,1500 ); end; function CustomRateCard { if( killedrid == getarg(0) && rand( 10000 ) <= getarg(2) ){ getitem getarg(1),1; announce "[ "+strcharinfo(0)+" ] get 1 "+getitemname( getarg(1) ),0; } return; } } Quote Link to comment Share on other sites More sharing options...
LCDTheOG Posted June 2, 2012 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 223 Reputation: 36 Joined: 12/13/11 Last Seen: February 1 Share Posted June 2, 2012 i always thought to edit the drop rate of your mobs with rAthena u needed to do it via sql tables :[, since thats what rAthena uses for databases. Quote Link to comment Share on other sites More sharing options...
Question
Jhosef
i want to know how to set the mini boss drop rate
Link to comment
Share on other sites
7 answers to this question
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.