Possible?

ay0konapala

New member
Messages
6
Points
0
Github
Crucified Death
Is it possible that one specific item, makes a casting skill, no cast? for example, the TRACKING skill. Even when you have 1000Dex or 1000Allstats, you cant no cast the skill Tracking. is there any script that can do that?

Hmm is there someone here knows how to do that? For example I will
make a custom item. Then the effect of that item will be no cast for TRACKING. Whats the script will be?

Help me thanks.

 
maybe those bonuses may help you:

bonus2 bSkillFixedCast,s,x; Increases fixed cast time of skill s by x milliseconds. (supports skill names.)
bonus2 bSkillVariableCast,s,x; Increases variable cast time of skill s by x milliseconds. (supports skill names.)
bonus2 bVariableCastrate,s,x; Increases variable cast time of skill s by x%. (supports skill names.)
bonus2 bFixedCastrate,s,x; Increases fixed cast time of skill s by x%. (supports skill names.)
 
 
they accept negative values if I recall correctly
 
So meaning sir, the value of 'x milliseconds' should be I.E. -5?

then the value of 'x%' shoud be I.E. -5%?

 
So meaning sir, the value of 'x milliseconds' should be I.E. -5?

then the value of 'x%' shoud be I.E. -5%?
bonus2 bFixedCastrate,"AL_INCAGI",-50;

the above code will reduce 50% of fixed cast for skill AL_INCAGI

 
fixed cast rate is not reduces with stats or reduced cast time (thats why instant cast isn't possible in renewal)

as evilpuncker said, it is only possible to reduced the fixed cast time with some items

 
Back
Top