Combo d'Objets #104
Taille du Combo: 2
Objets du Combo
Walking_Stick_
Magician_Hat
Effet du Combo
bonus bDex,2; bonus bInt,2; bonus bSPrecovRate,5; bonus bMatkRate,getequiprefinerycnt(EQI_HAND_R);
Références du Script
bDex
Bonus d’Objet
bDex
Signature:
bonus bDex,n;
Description:
DEX + n
bInt
Bonus d’Objet
bInt
Signature:
bonus bInt,n;
Description:
INT + n
bSPrecovRate
Bonus d’Objet
bSPrecovRate
Signature:
bonus bSPrecovRate,n;
Description:
Natural SP recovery ratio + n%
bMatkRate
Bonus d’Objet
bMatkRate
Signature:
bonus bMatkRate,n;
Description:
Magical attack power + n%
getequiprefinerycnt
Commande
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:
Exemple:
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;