Droprate Bonus for item equip

simplexjay2

New member
Messages
82
Points
0
In Rathena in item bonus you can use this bonuses but when i check here in herc i dont see drop bonuses for the item

bonus2 bDropAddRace,r,x; Adds x% to player's drop rate when killing a monster with race r.

bonus2 bDropAddClass,c,x; Adds x% to player's drop rate when killing a monster with class c.

example:

Script: <" bonus2 bExpAddRace, RC_All, 15; bonus2 bDropAddRace,RC_All,15;">

Gettings error Uknown pc_bonus2 that's why im looking for the right one 

15%exp and 15% droprate

 
For Exp, JExp, Drop 
   Script: <"
        bonus2 bExpAddRace,RC_All,100; // Increase Exp Rate 1x
        bonus2 bJExpAddRace,RC_All,100; // Increase Exp Rate 1x
    ">
    OnEquipScript: <" sc_start SC_CASH_RECEIVEITEM,-1,100; "> // Start drop rate "-1 Infinite" 1x
    OnUnequipScript: <" sc_end SC_CASH_RECEIVEITEM; "> //Stop drop rate

So as for your needs

    Script: <"
        bonus2 bExpAddRace,RC_All,15; // Increase Exp Rate 15%
    ">
    OnEquipScript: <" sc_start SC_CASH_RECEIVEITEM,-1,15; "> // Start drop rate "-1 Infinite" 15%
    OnUnequipScript: <" sc_end SC_CASH_RECEIVEITEM; "> //Stop drop rate

 
Last edited by a moderator:
For Exp, JExp, Drop 
   Script: <"
        bonus2 bExpAddRace,RC_All,100; // Increase Exp Rate 1x
        bonus2 bJExpAddRace,RC_All,100; // Increase Exp Rate 1x
    ">
    OnEquipScript: <" sc_start SC_CASH_RECEIVEITEM,-1,100; "> // Start drop rate "-1 Infinite" 1x
    OnUnequipScript: <" sc_end SC_CASH_RECEIVEITEM; "> //Stop drop rate

So as for your needs

    Script: <"
        bonus2 bExpAddRace,RC_All,15; // Increase Exp Rate 15%
    ">
    OnEquipScript: <" sc_start SC_CASH_RECEIVEITEM,-1,15; "> // Start drop rate "-1 Infinite" 15%
    OnUnequipScript: <" sc_end SC_CASH_RECEIVEITEM; "> //Stop drop rate
Thank you for the idea but i already got the dropdate source kindalate but it's 100% working

 
Back
Top