Combo d'Objets Détails

Combo d'Objets #471

Taille du Combo: 2
Objets du Combo
Spiritual Ring
Spiritual_Ring
Exoricist's Bible [2]
Demon_Hunting_Bible_K
Effet du Combo
bonus2 bVariableCastrate,"PR_MAGNUS",-25;
bonus bHealPower,10;
bonus bAddItemHealRate,10;
autobonus2 "{ bonus2 bIgnoreMdefRaceRate,RC_All,100; }",getequiprefinerycnt(EQI_HAND_R)*20,2000,BF_SHORT|BF_NORMAL;
/* Confirm: Success rate and duration */
Références du Script
bVariableCastrate Bonus d’Objet
bVariableCastrate
Signature:
bonus2 bVariableCastrate,sk,n;
Description:
Increases variable cast time of skill sk by n% (If RENEWAL_CAST is NOT defined, this bonus is equal to bCastrate)
bHealPower Bonus d’Objet
bHealPower
Signature:
bonus bHealPower,n;
Description:
Increases heal amount of all heal skills by n%
bAddItemHealRate Bonus d’Objet
bAddItemHealRate
Signature:
bonus2 bAddItemHealRate,iid,n;
Description:
Increases HP recovered by n% for item iid
bIgnoreMdefRaceRate Bonus d’Objet
bIgnoreMdefRaceRate
Signature:
bonus2 bIgnoreMdefRaceRate,r,n;
Description:
Disregard n% of the target's MDEF if the target belongs to race r
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;