Hercules Elf Bot - Mar 27, 2012 11:25
Originally posted by [b]Joseph[/b]
Doesn't reduce casting time.
iRO Wiki:
This skill decreases the target's fixed cast time by 10~50%.
http://irowiki.org/wiki/Sacrament
Hercules Elf Bot - Mar 27, 2012 15:44
Originally posted by [b]Lilith[/b]
src/map/[url="https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/src/map/skill.c"]skill.c[/url]
[quote]#if RECASTING
if( sc->data[SC__LAZINESS] )
fixed += fixed * sc->data[SC__LAZINESS]->val2 / 100;
/**
* AB Sacrament reduces fixed cast time by (10 x Level)% (up to 50%)
**/
if( sc->data[SC_SECRAMENT] )
fixed -= fixed * sc->data[SC_SECRAMENT]->val2 / 100;
#endif[/quote]
This post has been edited by
Lilith
on Mar 27, 2012 15:45
Hercules Elf Bot - Mar 28, 2012 4:45
Originally posted by [b]Ind[/b]
Make sure you have /src/map/config/Renewal.h "RECASTING" enabled.
Hercules Elf Bot - Apr 2, 2012 15:29
Originally posted by [b]Traxis[/b]
It doesn't work at all, really. I've tested it with many skills (RECASTING enabled of course), and it doesn't reduce the casting time, even a little. I know it should reduce just the Fixed Cast Time, but it's like you don't have effect or something (I see the icon, and that's it).
Could someone else try it?
Hercules Elf Bot - Apr 2, 2012 19:09
Originally posted by [b]Joseph[/b]
[quote name='Ind' timestamp='1332909938' post='8069']
Make sure you have /src/map/config/Renewal.h "RECASTING" enabled.
[/quote]
Enabled, and it is still the same.
Hercules Elf Bot - Apr 2, 2012 23:40
Originally posted by [b]Ind[/b]
I added debug lines before and after sacrament modifier is applied. it works. Just to make sure I even changed the fixed cast time to a higher value so that its easily noticeable, added 10s fixed cast time to Zen (soul collect) during my tests, and while in sacramento the cast time went down by 50% (lv 5) to 5s.
Hercules Elf Bot - Apr 2, 2012 23:52
Originally posted by [b]Traxis[/b]
Could you test it with [url="http://irowiki.org/wiki/Oratio"]Oratio[/url]? I don't see the difference at all. It should reduce the cast time "greatly".
Hercules Elf Bot - Apr 2, 2012 23:59
Originally posted by [b]Ind[/b]
I see where the problem lies. Thanks for the scenario Traxis.
Hercules Elf Bot - Apr 3, 2012 0:10
Originally posted by [b]Ind[/b]
Need to know how official servers behave in this case: (thanks to Traxis for Oratio test case)
- Notice my exemple isn't taking DEX/INT into account.
- Oratio has 5s variable cast time and no fixed cast time, so it gets 20% fixed cast time (20% of 5s) which turns to be 1s.
- If cast with sacrament status lv 5, fixed cast time is reduced to 0.5s.
- Upon finalizing the math the server currently applies a max(variable,fixed) which returns the greater of both, which leads to variable cast time taking priority against fixed cast time.
How is this meant to be applicable? It means that when your variable cast time is greather than your fixed cast time the variable cast time takes priority. is the server meant to SUM them?
Hercules Elf Bot - Apr 11, 2012 5:15
Originally posted by [b]Ind[/b]
bump.
Hercules Elf Bot - Jun 15, 2012 10:16
Originally posted by [b]Hamza221[/b]
Oratio on Iro has 1sec fixed cast and 4s of variable cast time that is total 5 seconds of casttime.
After secrament casted the should be around 2secs i guess not sure... and fixed cast time goes down to 0.5secs..
And both the cast times are getting sumed up on iro which results casting orioto to around 2.5sec to 3 sec cast time will calculate and let u know..
hope this helps
This post has been edited by
Hamza221
on Jun 15, 2012 10:21
Hercules Elf Bot - Jun 15, 2012 18:03
Originally posted by [b]MarkZD[/b]
[quote][color=#000000][font=Arial][size=2][b]Oratio[/b][/size][/font][/color]
[color=#000000][font=Arial][size=2]Success Chance: (40 + 5 * Skill Level) %[/size][/font][/color]
[color=#000000][font=Arial][size=2]Holy Element resistance reduction: (2 * Skill Level) %[/size][/font][/color]
[color=#000000][font=Arial][size=2]Fixed Cast Time: 1 second[/size][/font][/color]
[color=#000000][font=Arial][size=2]Variable Cast Time: 4 seconds[/size][/font][/color]
[color=#000000][font=Arial][size=2]Skill re-use Delay: 2 seconds[/size][/font][/color]
[color=#000000][font=Arial][size=2]Global Skill Delay: None[/size][/font][/color]
[/quote]
All skills should be updated:
[url="http://rathena.org/board/tracker/issue-5798-skill-rebalancing-kro/"]http://rathena.org/b...ebalancing-kro/[/url]
Some of them were updated recently.
There're other posts with updates.
There's no more 20% fixed cast to everything, it was already clarified.
If I'm not wrong Rytech is apart of it and can give more informations.
[quote name='Hamza221' timestamp='1339755390' post='10625']
Oratio on Iro has 1sec fixed cast and 4s of variable cast time that is total 5 seconds of casttime.After secrament casted the should be around 2secs i guess not sure... and fixed cast time goes down to 0.5secs..And both the cast times are getting sumed up on iro which results casting orioto to around 2.5sec to 3 sec cast time will calculate and let u know..hope this helps
[/quote]
I think there's some error here. Oratio reduces "Fixed" cast time, but by the way you say the cast went to 2sec, so it reduced variable too?
I think you're taking into account your Dex and Int.
The question is just one, does fixed sum with variable cast time?
If you're right, yes.
This post has been edited by
MarkZD
on Jun 15, 2012 18:04
Hercules Elf Bot - Jun 15, 2012 19:31
Originally posted by [b]Hamza221[/b]
yes both did sum up on iro... i checked with a timmer P without sacra it went to 5secs and with secra it was around 3secs