Item Combo #104
Combo Size: 2
Combo Items
Walking_Stick_
Magician_Hat
Combo Effect
bonus bDex,2; bonus bInt,2; bonus bSPrecovRate,5; bonus bMatkRate,getequiprefinerycnt(EQI_HAND_R);
Script References
bDex
Item Bonus
bDex
Signature:
bonus bDex,n;
Description:
DEX + n
bInt
Item Bonus
bInt
Signature:
bonus bInt,n;
Description:
INT + n
bSPrecovRate
Item Bonus
bSPrecovRate
Signature:
bonus bSPrecovRate,n;
Description:
Natural SP recovery ratio + n%
bMatkRate
Item Bonus
bMatkRate
Signature:
bonus bMatkRate,n;
Description:
Magical attack power + 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;