Originally posted by [b]EduardoKB[/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=3007
Hello there.
I'm reporting this bug for the third time. The other times I just said the mistakes but some dev or scripter came and say its ok and leave it.
Well, the item is: 5360.
Lets take a look at its description:
QUOTE
5360#
Ears of Hyuke's black cat. Very cute.
CRI + 3, Increases critical attack damage by 10%.
FLEE + 10, Reduces DEF by 50%.
Class :^777777 Headgear^000000
Defense :^777777 2^000000
Equipped on :^777777 Upper^000000
Weight :^777777 20^000000
Required Level :^777777 45^000000
Applicable Job :^777777 Every Job^000000
What we should expect when wearing this hat?
Increases critical attack damage by 10%Well, if my damage, without this hat, is 100 at a poring, when I wear this hat the damage should increase 10%, the new damage should be 110.
What happens?
The damage doesn't change. Why? Well, lets take a look at the script:
bonus2 bCriticalAddRace,RC_Boss,10; bonus2 bCriticalAddRace,RC_NonBoss,10; Its the part that changes things about "critical". If you stop to read this, you'll see that this code won't increase your damage, but it'll increase the chance for your criticals atacks to appear.
So you answer me what must be placed there, and i reply you:
bonus bCritAtkRate,10 Its the first problem with this item, lets take a look at the DEF problem now:
What we should expect when wearing this hat?
Reduces DEF by 50%. Well, if I have DEF = 10, by wearing this hat, my def should be 5.
What happens?
My def turns to 0. Lets take a look at the script:
bonus bDef,-50 If you look, you'll see that the defense isn't reduced by 50%, but you have a discount of 50 DEF pts, whats really diferent.
So you answer me what must be placed there, and i reply you:
bonus bDefRate,-50 Well, if we fix the item, the final script for it will be something like this:
QUOTE
{ bonus bDefRate,-50; bonus bFlee,10; bonus bCritical,3; bonus bCritAtkRate,10; },{},{}
Whats very different of the current SVN description:
QUOTE
{ bonus bDef,-50; bonus bFlee,10; bonus bCritical,3; bonus2 bCriticalAddRace,RC_Boss,10; bonus2 bCriticalAddRace,RC_NonBoss,10; },{},{}
And I look at 2 different translates for this item, English and Portuguese. They say exactly the same thing.
I'll use this to report another script problem, but with the item 5388. I know its commented, but the description says that the head gives you 'Double Atack' lvl 5. What means the hat should give a 25% chance of do a double atack.
If you take a look at the item, you'll see that the rate to cause a double atack is just 5%.
I explained this way because I really want this itens to be fixed. I reported this problems 2 times and no one could fix, hope you understand this time.
Sorry for bad english.
This post has been edited by EduardoKB: Apr 22 2009, 10:39 PM