Combo Item Detail

Combo Item #471

Ukuran Combo: 2
Item Combo
Spiritual Ring
Spiritual_Ring
Exorcist Bible [2]
Demon_Hunting_Bible_K
Efek 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 */
Referensi Skrip
bVariableCastrate Bonus Item
bVariableCastrate
Tanda Tangan:
bonus2 bVariableCastrate,sk,n;
Deskripsi:
Increases variable cast time of skill sk by n% (If RENEWAL_CAST is NOT defined, this bonus is equal to bCastrate)
bHealPower Bonus Item
bHealPower
Tanda Tangan:
bonus bHealPower,n;
Deskripsi:
Increases heal amount of all heal skills by n%
bAddItemHealRate Bonus Item
bAddItemHealRate
Tanda Tangan:
bonus2 bAddItemHealRate,iid,n;
Deskripsi:
Increases HP recovered by n% for item iid
bIgnoreMdefRaceRate Bonus Item
bIgnoreMdefRaceRate
Tanda Tangan:
bonus2 bIgnoreMdefRaceRate,r,n;
Deskripsi:
Disregard n% of the target's MDEF if the target belongs to race r
getequiprefinerycnt Perintah
getequiprefinerycnt
Tanda Tangan:
getequiprefinerycnt(<equipment slot>{,<char_id>})
Deskripsi:
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:
Contoh:
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;