Jump to content
  • 0

About Cart termination,Magic Crasher,Sharpshooting and also TAROT CARD


GM Homies

Question


  • Group:  Members
  • Topic Count:  17
  • Topics Per Day:  0.00
  • Content Count:  36
  • Reputation:   0
  • Joined:  03/02/12
  • Last Seen:  

Hello guys! I am using eathena, and my server is a Super High Rate server. so my skill damages are not that enough. because of imbalance many Sinx and Champions are owning the game. There are no wiz,Whitesmith or Sniper to be found. What should I do?

 

How do I increase the damage of Cart Termination, Magic Crasher, Sharpshooting and also the chance of Tarot card of fate.

 

I have read topics about them but no more for eathena. A help would be much appreciated. thank you!  :)

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


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

If you want to put it on items, there's an item script for that

bonus2 bSkillAtk,sk,n;            Increases damage of skill sk by n%

 

But if you want it permanently, you can increase their values in src/map/battle.c, for example..

 

Find

case WS_CARTTERMINATION:
			i = 10 * (16 - skill_lv);
			if (i < 1) i = 1;
			//Preserve damage ratio when max cart weight is changed.
			if(sd && sd->cart_weight)
				skillratio += sd->cart_weight/i * 80000/battle_config.max_cart_weight - 100;
			else if (!sd)
				skillratio += 80000 / i - 100;

 

Increase 'skillratio' value to how much you would want to increase it.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  17
  • Topics Per Day:  0.00
  • Content Count:  36
  • Reputation:   0
  • Joined:  03/02/12
  • Last Seen:  

If you want to put it on items, there's an item script for that

bonus2 bSkillAtk,sk,n;            Increases damage of skill sk by n%

But if you want it permanently, you can increase their values in src/map/battle.c, for example..

 

Find

case WS_CARTTERMINATION:
			i = 10 * (16 - skill_lv);
			if (i < 1) i = 1;
			//Preserve damage ratio when max cart weight is changed.
			if(sd && sd->cart_weight)
				skillratio += sd->cart_weight/i * 80000/battle_config.max_cart_weight - 100;
			else if (!sd)
				skillratio += 80000 / i - 100;

Increase 'skillratio' value to how much you would want to increase it.

Well thankyou and mostly appreciated your help! :) Btw. where is that "skillratio" Value? is it the number 80000?? in skillratio += 80000 / i - 100;      

 

and most of the skillratio in all skills are the exactly the same?

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:  

No, of course they are different because each skill has its own formula.. You can easily interpret them by reading their formula based on their skill description.

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