Add a chance of auto casting Level 10 Kyrie Eleison

glemor123

New member
Messages
287
Points
0
the kyrie eleison skill doesn't auto cast even if i'm hit

Code:
bonus3 bAutoSpellWhenHit,PR_KYRIE,10,(30+70*(readparam(bInt)>=99)); 
 
Note this:

bonus3 bAutoSpellWhenHit,x,y,n; n/10% chance to cast skill x of level y on attacker (unless it is a self or support skill) when being hit by a direct attack. (supports skill names) Target must be within spell's range to go off.

so you must use bonus4

bonus4 bAutoSpellWhenHit,x,y,n,i; n/10% chance to cast skill x of level y when being hit by a direct attack. (supports skill names) Target must be within spell's range to go off. i: 0=cast on self 1=cast on enemy, not on self 2=use random skill lv in [1..y] 3=1+2 (random lv on enemy)
try this

Code:
bonus4 bAutoSpellWhenHit,PR_KYRIE,10,(30+70*(readparam(bInt)>=99)),0;
 
Back
Top