Jump to content
  • 0

Help me to increase Ranger skill dmg


Checkmate

Question


  • Group:  Members
  • Topic Count:  96
  • Topics Per Day:  0.02
  • Content Count:  554
  • Reputation:   14
  • Joined:  09/24/12
  • Last Seen:  

Hi all..

 

I have question..

Can someone help me on to increase all Ranger skill damage on src...??

Help me increase it about 30% from default dmg.. thanks in anyway...

Link to comment
Share on other sites

4 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  32
  • Topics Per Day:  0.01
  • Content Count:  178
  • Reputation:   16
  • Joined:  06/25/12
  • Last Seen:  

try adding 

 

ATK_ADDRATE(wd.damage, wd.damage2, 30);

before break; at end of each ranger skill in battle.c

then recompile

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  96
  • Topics Per Day:  0.02
  • Content Count:  554
  • Reputation:   14
  • Joined:  09/24/12
  • Last Seen:  

Can you tell me more detail about this...??

Thanks

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  34
  • Reputation:   4
  • Joined:  03/16/12
  • Last Seen:  

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  32
  • Topics Per Day:  0.01
  • Content Count:  178
  • Reputation:   16
  • Joined:  06/25/12
  • Last Seen:  

better use Zein's suggestion anyway here an example of mine

 

In src/map/battle.c

case NC_FLAMELAUNCHER:
		case NC_COLDSLOWER:
			skillratio += 200 + 300 * skill_lv;
			RE_LVL_DMOD(100);
			break;

it becomes:

case NC_FLAMELAUNCHER:
case NC_COLDSLOWER:
		skillratio += 200 + 300 * skill_lv;
		RE_LVL_DMOD(100);
		ATK_ADDRATE(wd.damage, wd.damage2, 30);
		break;
Edited by chowking
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...