Item-Kombination #1874
Kombinationsgröße: 3
Kombinationsgegenstände
S_Reload_Shoes
S_Reload_Shield
S2_Reload_Armor
Kombinationseffekt
bonus bDelayrate,(getequiprefinerycnt(EQI_SHADOW_SHOES)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR) >= 25?-6:-1);
Skriptreferenzen
bDelayrate
Gegenstandsbonus
bDelayrate
Signatur:
bonus bDelayrate,n;
Beschreibung:
Increases skill delay by 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;