Jump to content
  • 0

H>Item bonus script i need some bonus script


Rocky Road

Question


  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  72
  • Reputation:   0
  • Joined:  11/08/14
  • Last Seen:  

hi guys can please anyone help me on this item bonus script for my items??

 

1) Increase str based on the refine of the (item like armor or weapon) compounded to.

 

2) Increase max HP by 100 per base vit.

 

3) increase 10% of your attack in poison damage

 

4) increase matk by 2 times of your job level. and reduces your after cast delay or skill delay by job level/50

 

5) reduce damage from reflected melee attacks (i dont know if this exist)

 

please guys help me ty

Link to comment
Share on other sites

2 answers to this question

Recommended Posts


  • Group:  Content Moderator
  • Topic Count:  22
  • Topics Per Day:  0.00
  • Content Count:  639
  • Reputation:   596
  • Joined:  11/25/11
  • Last Seen:  

1. Increase STR based on Refine of the (item like armor or weapon) compounded to:

bonus bStr, getrefine() * x;	// Where x is the number of STR points per refine 

2. Increase MaxHP by 100 per base Vit:

bonus bMaxHP, bVit * 100;	// Change the 100 if you want a different multiplier

3. Increase 10% of your Attack in Poison Damage:

bonus bAtkEle,Ele_Poison;	// Turning into Poison Element
bonus bAtkRate,10;  		// Adding 10% on Damage 

4. Increase MAtk by 2 times of your Job Level and reduces your after cast delay or Skill Delay by Job Level/50:

bonus bMatk, 2 * JobLevel;			// Increasing MAtk
bonus bDelayrate, -1 * (JobLevel/50); 		// Reducing Aftercast Delay

5. Reduce Damage from Reflected Melee Attacks:

I could not find a code for this one.
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  72
  • Reputation:   0
  • Joined:  11/08/14
  • Last Seen:  

 

1. Increase STR based on Refine of the (item like armor or weapon) compounded to:

bonus bStr, getrefine() * x;	// Where x is the number of STR points per refine 

2. Increase MaxHP by 100 per base Vit:

bonus bMaxHP, bVit * 100;	// Change the 100 if you want a different multiplier

3. Increase 10% of your Attack in Poison Damage:

bonus bAtkEle,Ele_Poison;	// Turning into Poison Element
bonus bAtkRate,10;  		// Adding 10% on Damage 

4. Increase MAtk by 2 times of your Job Level and reduces your after cast delay or Skill Delay by Job Level/50:

bonus bMatk, 2 * JobLevel;			// Increasing MAtk
bonus bDelayrate, -1 * (JobLevel/50); 		// Reducing Aftercast Delay

5. Reduce Damage from Reflected Melee Attacks:

I could not find a code for this one.

 

 

Thanksfor the fast reply!! yeah as i thought no script for that one

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...