Jump to content
  • 0

How to set or edit the miniboss card drop rate


Question

7 answers to this question

Recommended Posts

Posted

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

Posted

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.

Posted

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;

}

}

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...