Item Combo #8175
Combo Size: 2
Combo Items
EXODUS_JOKER_XIII
Republic_Scarf_BR
Combo Effect
bonus bAspd,1; bonus5 bAutoSpell,"RA_UNLIMIT",1,20,BF_LONG,0; bonus2 bSkillAtk,"ASC_BREAKER",10*(getequiprefinerycnt(EQI_HAND_R)/3);
Script References
bAspd
Item Bonus
bAspd
Signature:
bonus bAspd,n;
Description:
Attack speed + n
bonus5
Command
bonus5
Signature:
bonus5 <bonus type>,<val1>,<val2>,<val3>,<val4>,<val5>;
Description:
These commands are meant to be used in item scripts. They will probably work
outside item scripts, but the bonus will not persist for long. They, as
expected, refer only to an invoking character.
kind in ''.
bAutoSpell
Item Bonus
bAutoSpell
Signature:
bonus5 bAutoSpell,sk,y,n,bf,i;
Description:
Adds a n/10% chance to cast skill sk of level y when attacking with trigger criteria bf
bSkillAtk
Item Bonus
bSkillAtk
Signature:
bonus2 bSkillAtk,sk,n;
Description:
Increases damage of skill sk by n%
getequiprefinerycnt
Command
getequiprefinerycnt
Signature:
getequiprefinerycnt(<equipment slot>{,<char_id>})
Description:
slot. For a list of equipment slots see 'getequipid'.
Can be used to check if you have reached a maximum refine value, default for
this is +10:
Example:
if (getequiprefinerycnt(EQI_HEAD_TOP) < 10)
mes "I will now upgrade your " + getequipname(EQI_HEAD_TOP);
else
mes "Sorry, it's not possible to refine hats better than +10";
close;