Item Combo Details

Item Combo #1050

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