Combo de Itens #47
Tamanho do Combo: 2
Itens do Combo
Staff_Of_Soul
Spiritual_Ring
Efeito do Combo
bonus bMatkRate,6; bonus bDex,2; bonus bVariableCastrate,-getequiprefinerycnt(EQI_HAND_R);
Referências do Script
bMatkRate
Bônus de Item
bMatkRate
Assinatura:
bonus bMatkRate,n;
Descrição:
Magical attack power + n%
bDex
Bônus de Item
bDex
Assinatura:
bonus bDex,n;
Descrição:
DEX + n
bVariableCastrate
Bônus de Item
bVariableCastrate
Assinatura:
bonus2 bVariableCastrate,sk,n;
Descrição:
Increases variable cast time of skill sk by n% (If RENEWAL_CAST is NOT defined, this bonus is equal to bCastrate)
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;