Combo d'Objets Détails

Combo d'Objets #1050

Taille du Combo: 2
Objets du Combo
Angel Wing Ears
Ear_Of_Angel's_Wing
Valkyrie Circlet [1]
Valkyrie_Circlet
Effet du Combo
autobonus "{ bonus2 bHPLossRate,30,1000; bonus bHit,-10; bonus bSplashRange,1; }",10+getequiprefinerycnt(EQI_HEAD_TOP),5000,BF_WEAPON,"{ transform 1765,5000; }";
Références du Script
bHPLossRate Bonus d’Objet
bHPLossRate
Signature:
bonus2 bHPLossRate,n,t;
Description:
Lose n HP every t milliseconds
bHit Bonus d’Objet
bHit
Signature:
bonus bHit,n;
Description:
Hit + n
bSplashRange Bonus d’Objet
bSplashRange
Signature:
bonus bSplashRange,n;
Description:
Splash attack radius + n (only the highest among all is applied)
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;