Jump to content
  • 0

bonus bBaseExp,n (exp %); possible?


hakuren

Question


  • Group:  Members
  • Topic Count:  120
  • Topics Per Day:  0.03
  • Content Count:  295
  • Reputation:   6
  • Joined:  12/02/11
  • Last Seen:  

is this bonus can be done?

Edited by hakuren
Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  149
  • Reputation:   33
  • Joined:  12/24/11
  • Last Seen:  

Please state what exactly you want. I can't tell by just reading the title

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  120
  • Topics Per Day:  0.03
  • Content Count:  295
  • Reputation:   6
  • Joined:  12/02/11
  • Last Seen:  

Please state what exactly you want. I can't tell by just reading the title

 

is there anyway to add a bonus to item example knife { bonus bBaseExp,10 } when is onequip everytime a player kill an monster it will gain bonus of 10% possible?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  38
  • Topics Per Day:  0.01
  • Content Count:  949
  • Reputation:   174
  • Joined:  06/12/12
  • Last Seen:  

You can do it by using a script though..

- script BonusExpOnKill -1,{
 
OnNPCKillEvent:
 
if(isequipped(1234) && killedrid == 5678 ) { //Change 1234 to Item ID of the equip, change 5678 to monster ID if you need it to work on a specific monster only.
         set BaseExp,BaseExp+(NextBaseExp/10);
         set JobExp,JobExp+(NextJobExp/10);
       }
       end;
}
Edited by sandbox
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...