[item_rate_card_boss] How change drop rate to smaller value then 0.01%?

anacondaq

New member
Messages
161
Points
0
Emulator
Hercules
I want to decrease drop rate of cards to smaller value then 0.01%

How can i do that? 

// The rate at which cards are droppeditem_rate_card: 100item_rate_card_boss: 100item_drop_card_min: 1item_drop_card_max: 10000
Where item_rate_card: 100 = 0.01%

Where item_rate_card_boss = 0.01%

How can i change item_rate_card_boss to 0.00001% ?

Is it possible?

Thank you.

 
Just by curiosity : why do you want to put mvp card to such a lower value ? ¤.¤ it's gonna be inhuman for your players.

 
this question is still actual. Looking for way to make drop_rate less then 0.01%

 
well... it's possible to make it lower than 0.01% if you do it using NPC script with some work around ...

if using database ... probably 0.01 is the lowest ...

 
Last edited by a moderator:
I haven't checked this entirely but maybe change if (rnd() % 10000 >= drop_rate) in mob.c to 100000 and keep default server rate 10x instead of 1x would it even out ?
default_tongue.png


 
Back
Top