Jump to content
  • 0

where can I adjust/update the skill mechanics of Sharpshoot / Focus Arrow strike?


laonglaing

Question


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  31
  • Reputation:   0
  • Joined:  06/12/16
  • Last Seen:  

I'm trying to learn how Sharpshoot/FAS Skill works. as i want to do some damage modification when the skill bounce on other player/mobs.
tried to check skill.cpp using skill id SN_SHARPSHOOTING but cant find relevant information. can someone enlighten me about this/

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.02
  • Content Count:  106
  • Reputation:   1
  • Joined:  09/24/19
  • Last Seen:  

17 hours ago, laonglaing said:

I'm trying to learn how Sharpshoot/FAS Skill works. as i want to do some damage modification when the skill bounce on other player/mobs.
tried to check skill.cpp using skill id SN_SHARPSHOOTING but cant find relevant information. can someone enlighten me about this/

check in battle.c it could be this

 

 

		case SN_SHARPSHOOTING:
			if (src->type == BL_MOB) { // TODO: Did these formulas change in the renewal balancing?
				if (wd->miscflag & 2) // Splash damage bonus
					skillratio += -100 + 140 * skill_lv;
				else
					skillratio += 100 + 50 * skill_lv;
				break;
			}

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  31
  • Reputation:   0
  • Joined:  06/12/16
  • Last Seen:  

6 hours ago, Notorius said:

check in battle.c it could be this

 

 

		case SN_SHARPSHOOTING:
			if (src->type == BL_MOB) { // TODO: Did these formulas change in the renewal balancing?
				if (wd->miscflag & 2) // Splash damage bonus
					skillratio += -100 + 140 * skill_lv;
				else
					skillratio += 100 + 50 * skill_lv;
				break;
			}

 

Thank you for this! so basically this is only where sharpshoot damage adjustment and its mechanics on skill_db.txt or skill_db.yml

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