Item-Kombination Details

Item-Kombination #1197

Kombinationsgröße: 3
Kombinationsgegenstände
Kombinationseffekt
bonus bMaxHP,2000;
bonus bNoCastCancel;
bonus bFixedCastrate,-15-(getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES));
Skriptreferenzen
bMaxHP Gegenstandsbonus
bMaxHP
Signatur:
bonus bMaxHP,n;
Beschreibung:
MaxHP + n
bNoCastCancel Gegenstandsbonus
bNoCastCancel
Signatur:
bonus bNoCastCancel;
Beschreibung:
Prevents casting from being interrupted when hit (does not work in GvG)
bFixedCastrate Gegenstandsbonus
bFixedCastrate
Signatur:
bonus2 bFixedCastrate,sk,n;
Beschreibung:
Increases fixed cast time of skill sk by n% (has effect in RENEWAL_CAST only)
getequiprefinerycnt Befehl
getequiprefinerycnt
Signatur:
getequiprefinerycnt(<equipment slot>{,<char_id>})
Beschreibung:
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:
Beispiel:
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;