Combo d'Objets #7594
Taille du Combo: 2
Objets du Combo
Grand_Pere_Card
Moonlight_Bell_BR
Effet du Combo
bonus2 bResEff,Eff_Sleep,10000; bonus bUnbreakableArmor; bonus bUnbreakableWeapon; bonus2 bSkillCooldown,"WM_LULLABY_DEEPSLEEP",-1000*getequiprefinerycnt(EQI_ARMOR);
Références du Script
bResEff
Bonus d’Objet
bResEff
Signature:
bonus2 bResEff,eff,n;
Description:
Adds a n/100% tolerance to status eff
bUnbreakableArmor
Bonus d’Objet
bUnbreakableArmor
Signature:
bonus bUnbreakableArmor;
Description:
Armor cannot be damaged/broken by any means
bUnbreakableWeapon
Bonus d’Objet
bUnbreakableWeapon
Signature:
bonus bUnbreakableWeapon;
Description:
Weapon cannot be damaged/broken by any means
bSkillCooldown
Bonus d’Objet
bSkillCooldown
Signature:
bonus2 bSkillCooldown,sk,t;
Description:
Increases cooldown of skill sk by t milliseconds
getequiprefinerycnt
Commande
getequiprefinerycnt
Signature:
getequiprefinerycnt(<equipment slot>{,<char_id>})
Description:
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:
Exemple:
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;