H> about drop rates

N e s s

New member
Messages
202
Points
0
Age
33
how can i make my drop rates x25? thanks in advance!
default_smile.png


 
100 = x1

2500 = x25

5000 = x50

10000 = x100

 
Last edited by a moderator:
why is that when i put 10000 in card drops card wont give 100 percent drop rate?

 
I think you didn't recompile your server. please recompile your server after modifying src
default_smile.png


 
/// 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 RENEWAL_DROP
 
here is my setting then i recompile it still not working properly
default_sad.png

 
following this format?

Code:
// The rate at which cards are droppeditem_rate_card: 10000 //Normal card = 100%item_rate_card_boss: 100 // bosscard = 1%item_drop_card_min: 10000item_drop_card_max: 10000
 
Last edited by a moderator:
sir mhalicot base on my testing right now

1% = 10000

so if you want 100 percent drop rate without editing item_drop_card_min and item_drop_card_max

multiply 10000 to 100

10000 x 100 = 1000000

 
Ness, it's:

  • 10 = 0.1%
  • 100 = 1%
  • 1000 = 10%
  • 10000 = 100%

This is the formula the server follows.

 
hi sir mysterious why is that when i set it 10000 the drop rate of the card is not 100%? yah when i chect it using @rates the rates are correct. but when i kill a monster monter wont drop a card

 
Maybe it's because you still have Renewal drops enabled?

 
no, i already disable it in renewal.h sir jabote!
default_smile.png
even recompiling it still the same.

 
Back
Top