Item-Kombination #1202
Kombinationsgröße: 3
Kombinationsgegenstände
Doram_High_Suit
Doram_High_Cape
Doram_High_Shoes
Kombinationseffekt
bonus bMaxHP,3000; bonus bNoCastCancel; bonus bFixedCastrate,-20-(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;