Issue information

Issue ID
#6721
Status
Working as Intended
Severity
None
Started
Hercules Elf Bot
Sep 21, 2012 9:36
Last Post
Hercules Elf Bot
Sep 26, 2012 23:37
Confirmation
N/A

Hercules Elf Bot - Sep 21, 2012 9:36

Originally posted by [b]emong[/b]
Just recently found out that monster sometimes don't drop any item, or etc.

Server rates @ 5x . This includes base, job and drop rates..

Checked 2 monster, namely Scorpion and Rocker..

For Rocker, when my level was not gap by 16.
The drop rate is somehow okay but for some instance it doesn't drop any. The grasshopper leg. but when my level was greater than 16. 50/50 chance that 0 drop rate bug will occur.

For Scorpion, it is the same also.

Question,
Is this normal @ rates 5x? Does 0 drop rate occur when player is greater than 16 levels than mobs?

I used this formula, [url="http://rode-r.doddlercon.com/viewpage/d/3"]http://rode-r.doddlercon.com/viewpage/d/3[/url] and found out that if the gap is greater than 16, the drop rate will just deduct by 50% but sometimes it deducts 100% and become 0 drop rate.

Can someone enlighten me about it! Thanks!

Hercules Elf Bot - Sep 21, 2012 10:13

Originally posted by [b]Brynner[/b]
does your server enabled the floating rates?

Hercules Elf Bot - Sep 21, 2012 10:18

Originally posted by [b]emong[/b]
[quote name='Brynner' timestamp='1348222388' post='14593']
does your server enabled the floating rates?
[/quote]

no I didn't disable it. just normal. What can I do with it? by chance, where does floating rates set? so that I'll know. Maybe I have accidentally changed it. TY!

Hercules Elf Bot - Sep 21, 2012 12:27

Originally posted by [b]Brynner[/b]
if you enable the floating rates. make it sure you change the droprate configuration there. because if you enable it without changing setup. it will automatically set your exp and drop rates to the lowest point.

Hercules Elf Bot - Sep 21, 2012 14:17

Originally posted by [b]emong[/b]
No I didn't enable the floating rates. I just changed the drop rate found on battle folder. the drop.txt/conf..

And my issue is when my level gap is greater than 16 there is a possibility that drop rate become 0 %

Hercules Elf Bot - Sep 21, 2012 17:19

Originally posted by [b]Emistry[/b]
[url="http://rathena.org/board/tracker/issue-6464-drop-rate-mvp-000/page__gopid__13266#entry13266"]http://rathena.org/board/tracker/issue-6464-drop-rate-mvp-000/page__gopid__13266#entry13266[/url]

what revision you using ?

[quote name='Ind' timestamp='1345667842' post='13654']
Fixed in [rev=16688]
[/quote]

Hercules Elf Bot - Sep 24, 2012 0:09

Originally posted by [b]emong[/b]
latest revision.

Hercules Elf Bot - Sep 24, 2012 1:07

Originally posted by [b]emong[/b]
Already have that revision and yeah 0 drop rate still happens :(

Hercules Elf Bot - Sep 25, 2012 19:26

Originally posted by [b]solvent[/b]
I'm sorry if I'm misunderstanding you, but it sounds like you're saying the drop rate should have been 90% * 5 * 50% = 225%, ie you expected every rocker to drop a leg, but that you observed that only half of the rockers dropped legs?

If so, I think this is intended. The drop rate 225% is capped at 100% before level adjustments are applied. I think you could adjust this by setting item_drop_common_max: 20000 in battle/drops.conf, which would cap the drop rate to 200% before level adjustment.

Unrelated, party_renewal_drop_mod(), located in src/map/party.c has a line reading
if ( diff <= -10 && diff <= -14)
I'm guessing this should read
if ( diff <= -10 && diff >= -14)
but I'm not sure what the kRo tables are like. If its right, might as well change it to
if ( diff <= -14)

Hercules Elf Bot - Sep 26, 2012 23:37

Originally posted by [b]Ind[/b]
If you don't like that disable RENEWAL_EXP in src/config/renewal.h