Combo de Itens #1050
Tamanho do Combo: 2
Itens do Combo
Ear_Of_Angel's_Wing
Valkyrie_Circlet
Efeito do Combo
autobonus "{ bonus2 bHPLossRate,30,1000; bonus bHit,-10; bonus bSplashRange,1; }",10+getequiprefinerycnt(EQI_HEAD_TOP),5000,BF_WEAPON,"{ transform 1765,5000; }";
Referências do Script
bHPLossRate
Bônus de Item
bHPLossRate
Assinatura:
bonus2 bHPLossRate,n,t;
Descrição:
Lose n HP every t milliseconds
bHit
Bônus de Item
bHit
Assinatura:
bonus bHit,n;
Descrição:
Hit + n
bSplashRange
Bônus de Item
bSplashRange
Assinatura:
bonus bSplashRange,n;
Descrição:
Splash attack radius + n (only the highest among all is applied)
getequiprefinerycnt
Comando
getequiprefinerycnt
Assinatura:
getequiprefinerycnt(<equipment slot>{,<char_id>})
Descrição:
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:
Exemplo:
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;