Jump to content
  • 0

Renewal Drops


SlashGeeGee

Question


  • Group:  Members
  • Topic Count:  111
  • Topics Per Day:  0.02
  • Content Count:  573
  • Reputation:   20
  • Joined:  11/19/11
  • Last Seen:  

Hello rA :)

I tried to disable the renewal drop here's what i edit in src/map/config/renewal.h


/// renewal drop rate algorithms
/// (disable by commenting the line)
///
/// leave this line to enable renewal item drop rate algorithms
/// while enabled a special modified based on the difference between the player and monster level is applied
/// based on the http://irowiki.org/wiki/Drop_System#Level_Factor table
#define RE_DROP_MOD 0

as you can see i already set it to 0 and recompiled it already .

but when @mi ingame my drops is still 100% ?

here's my drops config:


// The rate the common items are dropped (Items that are in the ETC tab, besides card)
item_rate_common: 500000
item_rate_common_boss: 100000
item_drop_common_min: 1
item_drop_common_max: 10000

it's for the item_rate_common :o

Thanks for Helping

SlashGeeGee

Link to comment
Share on other sites

11 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  554
  • Reputation:   70
  • Joined:  04/04/12
  • Last Seen:  

lols..you must comment it to disable the feature and not by setting it to 0..anyways every person commit mistake... :o

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  111
  • Topics Per Day:  0.02
  • Content Count:  573
  • Reputation:   20
  • Joined:  11/19/11
  • Last Seen:  

ok , i comment it already and recompiled but still no effect :o

my drops.conf


// 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

I just set it to 100 but still it applies the renewal one. if set that to 1000 or any other more than 100

it's 100% when @mi ingame.

see ss drop rates when set to 100:

16kqr8z.jpg

BUMP !

Anyone knows how to fix this ?

Edited by SlashGeeGee
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  554
  • Reputation:   70
  • Joined:  04/04/12
  • Last Seen:  

how about the other item drop related settings?? what are there value??

Edited by malufett
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  111
  • Topics Per Day:  0.02
  • Content Count:  573
  • Reputation:   20
  • Joined:  11/19/11
  • Last Seen:  

here my drops.conf ;

// 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: 500000
item_rate_heal_boss: 100000
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: 500000
item_rate_use_boss: 100000
item_drop_use_min: 1
item_drop_use_max: 10000

// The rate at which equipment is dropped.
item_rate_equip: 500000
item_rate_equip_boss: 100000
item_drop_equip_min: 1
item_drop_equip_max: 10000

// The rate at which cards are dropped
item_rate_card: 500000
item_rate_card_boss: 10000
item_drop_card_min: 1
item_drop_card_max: 10000

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  554
  • Reputation:   70
  • Joined:  04/04/12
  • Last Seen:  

hmm..as I see the healing, usable and equipment options are too high therefore the rate will be 100% try to lower its value..

and note the one you set 100 is for etc...and check if the item logarithm is set...

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  111
  • Topics Per Day:  0.02
  • Content Count:  573
  • Reputation:   20
  • Joined:  11/19/11
  • Last Seen:  

ok ill try now :)

it's set to no :

item_logarithmic_drops: no

still not working here's my drop.conf:


// Item drop rates (Note 2)

// The rate the common items are dropped (Items that are in the ETC tab, besides card)
item_rate_common: 100000
item_rate_common_boss: 100000
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: 100000
item_rate_heal_boss: 100000
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: 100000
item_rate_use_boss: 100000
item_drop_use_min: 1
item_drop_use_max: 10000

// The rate at which equipment is dropped.
item_rate_equip: 100000
item_rate_equip_boss: 100000
item_drop_equip_min: 1
item_drop_equip_max: 10000

// The rate at which cards are dropped
item_rate_card: 100000
item_rate_card_boss: 100000
item_drop_card_min: 1
item_drop_card_max: 10000

the item_rate_card is set to 100k but the poring drops is 0.01 and the boss is 1%

and every item has different drop rate :o

see screenshot :

2u5q3v6.jpg

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  554
  • Reputation:   70
  • Joined:  04/04/12
  • Last Seen:  

this is how it works

rate = 1; //poring card default drop rate

rate_adjust = 100000;//your settings

rate = rate * rate_adjust/100;

rate = cap(1, 10000);

so the result will be 1000

for the conversion 1000/1000 = 1 (1/100=0.01%)

Edited by malufett
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  439
  • Reputation:   29
  • Joined:  12/08/11
  • Last Seen:  

For more information, you can use this information (all members should know how to use the wiki)

http://rathena.org/wiki/Category:Configuration#Setting_Drop_rates

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  111
  • Topics Per Day:  0.02
  • Content Count:  573
  • Reputation:   20
  • Joined:  11/19/11
  • Last Seen:  

i still dont get it :)

how do i set my rates to 50% drops for normal monster and 10% drops to MVP equips , healing , usables and etc.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  439
  • Reputation:   29
  • Joined:  12/08/11
  • Last Seen:  

Teh drop rates varies from monster to monster. You already mentioned that items drop on different rates

depending on how they were set on mob_db. What the other server owners are doing, including myself,

we base our rates on the items that we think has the highest importance. Let's say raydric card or cards

and items that has .01% chance to drop. Then this becomes the factor that will decide the server's drop

rates.

Using your current rates, if you're normal or boss cards has the same rates setting them to 500000 will

make raydric cards drop at 50% while cards/items that has a base drop chance of .1 and above will

automatically become 100%. That is why there are a lot of servers that has used the word 'custom'

to represent rates.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  111
  • Topics Per Day:  0.02
  • Content Count:  573
  • Reputation:   20
  • Joined:  11/19/11
  • Last Seen:  

oh i see if i want it to be all the same drop rates ill have to edit it in mob_db ? right ?

Link to comment
Share on other sites

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.

×
×
  • Create New...