Issue information

Issue ID
#6845
Status
Working as Intended
Severity
None
Started
Hercules Elf Bot
Nov 2, 2012 16:55
Last Post
mkbu95
Jan 19, 2013 21:01
Confirmation
N/A

Hercules Elf Bot - Nov 2, 2012 16:55

Originally posted by [b]Golem1988[/b]
Well, royal guard's spear quicken doesn't work.
Tested on renewal and on pre-renewal ASPD algorythms.
Basicly skill works, but 0 ASPD is added instead of +30% at the max skill level.

Hercules Elf Bot - Nov 3, 2012 3:17

Originally posted by [b]renniw[/b]
RK_Twohand quicken
test on ra16857 renewal
skill work but 0 aspd added

Hercules Elf Bot - Nov 3, 2012 3:25

Originally posted by [b]malufett[/b]
[quote]
/// renewal ASPD [malufett]
/// (disable by commenting the line)
///
/// leave this line to enable renewal ASPD
/// - shield penalty is applied
/// - [b]AGI has a greater factor in ASPD increase[/b]
/// - there is a change in how skills/items give ASPD
/// - some skill/item ASPD bonuses won't stack
#define RENEWAL_ASPD[/quote]


:meow:

Hercules Elf Bot - Nov 3, 2012 4:46

Originally posted by [b]Golem1988[/b]
Can't see any umm... AGI bonus when speaking about skill should give +30% aspd, but doesn't give any. Saying this I really don't understand how agi can be related to this question.
Attack Speed bonus[b] Doesn't work on both, pre- re and re. [/b]In that time two-hand quicken is working fine and increases ASPD just fine.

Hercules Elf Bot - Nov 3, 2012 14:39

Originally posted by [b]malufett[/b]
its working fine and for added info aspd bonus from Spear Quicken is non stackable so check for some items that may hinder the bonus..

and as you can see in the src
for renewal

[CODE]
if(sc->data[SC_SPEARQUICKEN] && skills1 < 7)
skills1 = 7;[/CODE]

for pre

[CODE]
if(sc->data[SC_SPEARQUICKEN] &&
max < sc->data[SC_SPEARQUICKEN]->val2)
max = sc->data[SC_SPEARQUICKEN]->val2;[/CODE]

[CODE]
#ifndef RENEWAL
case SC_SPEARQUICKEN:
val2 = 200+10*val1;
break;
#endif[/CODE]

it's defined properly..

:meow: