Item Combo Details

Item Combo #2796

Combo Size: 3
Combo Items
Twin Crown [1]
BioWeapon_Helm_GC
Judgement Slasher [2]
Judgement_Slasher
Repent Slasher [3]
Repent_Slasher
Combo Effect
.@r_weapon = getequiprefinerycnt(EQI_HAND_R);
bonus bCritAtkRate,20;
bonus bShortAtkRate,5*(.@r_weapon/2);
bonus bLongAtkRate,5*(.@r_weapon/2);
Script References
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;
bCritAtkRate Item Bonus
bCritAtkRate
Signature:
bonus bCritAtkRate,n;
Description:
Increases critical damage by +n%
bShortAtkRate Item Bonus
bShortAtkRate
Signature:
bonus bShortAtkRate,n;
Description:
Increases damage of short ranged attacks by n%
bLongAtkRate Item Bonus
bLongAtkRate
Signature:
bonus bLongAtkRate,n;
Description:
Increases damage of long ranged attacks by n%