Jump to content
  • 0

Request: Soul breaker modification


casteryee

Question


  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  80
  • Reputation:   3
  • Joined:  02/07/12
  • Last Seen:  

Hi to Rathena,

Can anyone help me with soul breaker source?

I want +50% attack when I buff Enchant Deadly poison.

PS: My server for now having 400% bonus to soul breaker when I buff EDP.

anyone can help me, still waiting for someone else can help me ^_^

Edited by casteryee
Link to comment
Share on other sites

8 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  80
  • Reputation:   3
  • Joined:  02/07/12
  • Last Seen:  

Anyone willing to help?

I really hope someone can help me with this.

:D

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  80
  • Reputation:   3
  • Joined:  02/07/12
  • Last Seen:  

hmm, I will not give up to wait someone can help me :)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  554
  • Reputation:   70
  • Joined:  04/04/12
  • Last Seen:  

are you sure??400%??

currently in rAthena EDP does not work on Soul Breaker.... :)

#ifndef RENEWAL_EDP
		// renewal EDP doesn't affect your final damage but your atk and weapon atk
		if(sc->data[sC_EDP] &&
		  	skill_num != ASC_BREAKER &&
			skill_num != ASC_METEORASSAULT &&
			skill_num != AS_SPLASHER &&
			skill_num != AS_VENOMKNIFE)
			ATK_ADDRATE(sc->data[sC_EDP]->val3);
#endif

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  80
  • Reputation:   3
  • Joined:  02/07/12
  • Last Seen:  

Yeah, Im sure about that, because I saw my players use that.

Is that any way to make it boost 50% damage only?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  554
  • Reputation:   70
  • Joined:  04/04/12
  • Last Seen:  

check if the post above is same with yours and with this line

@status.c

		case SC_EDP:	// [Celest]
		val2 = val1 + 2; //Chance to Poison enemies.
		val3 = 50*(val1+1); //Damage increase (+50 +50*lv%)
		if( sd )//[ind] - iROwiki says each level increases its duration by 3 seconds
			tick += pc_checkskill(sd,GC_RESEARCHNEWPOISON)*3000;
		break;

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  80
  • Reputation:   3
  • Joined:  02/07/12
  • Last Seen:  

Yes same as yours.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  554
  • Reputation:   70
  • Joined:  04/04/12
  • Last Seen:  

:) are you sure? if then EDP should not work on soul breaker as the code implies

skill_num != ASC_BREAKER

why not try to experiment on the val3 of status.c and see what will happen

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  407
  • Reputation:   159
  • Joined:  11/18/11
  • Last Seen:  

// renewal EDP increases your base atk by atk x skill level

// renewal EDP increases your weapon atk by watk x Skill Level - 1

If you want change damage of str based ASC_BREAKER skill with EDP only:

battle.c -> search

case ASC_BREAKER:

skillratio += 100*skill_lv-100;

break;

and change to

case ASC_BREAKER:

if(sc && sc->data[sC_EDP])

skillratio += 100*skill_lv-100; // <-- you needs modify this formula

else

skillratio += 100*skill_lv-100;

break;

maybe i'm wrong because not tested

Edited by Lilith
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...