Item-Kombination Details

Item-Kombination #1815

Kombinationsgröße: 3
Kombinationsgegenstände
Spellflow Shadow Shoes
S_Spell_Flow_Shoes
Spellflow Shadow Armor
S_Spell_Flow_Armor
Spellflow Shadow Shield II
S2_Spell_Flow_Shield
Kombinationseffekt
bonus bNoCastCancel;
bonus bUseSPrate,40-getequiprefinerycnt(EQI_SHADOW_SHIELD)-getequiprefinerycnt(EQI_SHADOW_ARMOR)-getequiprefinerycnt(EQI_SHADOW_SHOES);
Skriptreferenzen
bNoCastCancel Gegenstandsbonus
bNoCastCancel
Signatur:
bonus bNoCastCancel;
Beschreibung:
Prevents casting from being interrupted when hit (does not work in GvG)
bUseSPrate Gegenstandsbonus
bUseSPrate
Signatur:
bonus bUseSPrate,n;
Beschreibung:
SP consumption + n%
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;