is this the correct script for this?

HisokaMachi

New member
Messages
75
Points
0
Location
Quezon City
Emulator
Sealed Kiel Card Script I think it would only take effect when your headgear is +15 above but in the card it says reduce 15% after cast delay when compounded on no+ headgear

{ bonus bDelayRate,((getrefine()>14)?-20:-15); },{},{

here is the item  skiel.png

 
I think it's OK. This says if the headgear is refined less than +15, just reduce a 15%; Else if its refined over +15, then reduce a 20%. At least that's what I get from the description.

 
more detailed...

getrefine() > 14

if the item refine is greater than 14, then

{ bonus bDelayRate,-20; } 
else

Code:
{ bonus bDelayRate,-15; }
 
Back
Top