Combo de Objetos Detalles

Combo de Objetos #1050

Tamaño del Combo: 2
Objetos del Combo
Angel Wing Ears
Ear_Of_Angel's_Wing
Valkyrie Circlet [1]
Valkyrie_Circlet
Efecto del Combo
autobonus "{ bonus2 bHPLossRate,30,1000; bonus bHit,-10; bonus bSplashRange,1; }",10+getequiprefinerycnt(EQI_HEAD_TOP),5000,BF_WEAPON,"{ transform 1765,5000; }";
Referencias del Script
bHPLossRate Bono de Ítem
bHPLossRate
Firma:
bonus2 bHPLossRate,n,t;
Descripción:
Lose n HP every t milliseconds
bHit Bono de Ítem
bHit
Firma:
bonus bHit,n;
Descripción:
Hit + n
bSplashRange Bono de Ítem
bSplashRange
Firma:
bonus bSplashRange,n;
Descripción:
Splash attack radius + n (only the highest among all is applied)
getequiprefinerycnt Comando
getequiprefinerycnt
Firma:
getequiprefinerycnt(<equipment slot>{,<char_id>})
Descripción:
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:
Ejemplo:
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;