Jump to content
  • 0
simplexjay2

Droprate Bonus for item equip

Question

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

Share this post


Link to post
Share on other sites

7 answers to this question

Recommended Posts

  • 0

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

Edited by nastyboy34
update

Share this post


Link to post
Share on other sites
  • 0
On 5/2/2021 at 8:27 AM, nastyboy34 said:

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

 

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.