Jump to content
  • 0

Enchant Deadly Poison


vBrenth

Question


  • Group:  Members
  • Topic Count:  35
  • Topics Per Day:  0.01
  • Content Count:  311
  • Reputation:   46
  • Joined:  11/06/11
  • Last Seen:  

My server use costumize cards..

Assassin Cross Eremes gives a chance to cash level 1 EDP :) which means its double the skills damage like Asura + Sacrifice and Etc..

My problem is the paladin on my server are too much imbalance now. I just want to request that if paladin cast an Level 1 EDP the Sacrifice skill increase only 50% ? not double thanks!

Link to comment
Share on other sites

12 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  125
  • Topics Per Day:  0.03
  • Content Count:  595
  • Reputation:   23
  • Joined:  02/23/12
  • Last Seen:  

hi i have the same cards too, but for me, sacrifice is not that imbalance when edp,

more imabalnce is when the champ has it, i'm suggesting you to add more description for your assassin cross card to make it balance, like

BaseJob == Swordsman bonus mahx hp -1000 something like that to prevent imabalance. do the same to other jobs if you feel they are imba when edp , make them killable, make it balance xD

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  35
  • Topics Per Day:  0.01
  • Content Count:  311
  • Reputation:   46
  • Joined:  11/06/11
  • Last Seen:  

Its pretty useless you know, when the edp cast then they will remove the cards and switch to weapon card :)

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

erm...since i am not good enough for src yet....but i think you still can try do some trick in the calculation part..

for example this part...

https://rathena.svn....rc/map/battle.c

 //Skill damage modifiers that stack linearly
 if(sc && skill_num != PA_SACRIFICE)
 {
  if(sc->data[sC_OVERTHRUST])
skillratio += sc->data[sC_OVERTHRUST]->val3;
  if(sc->data[sC_MAXOVERTHRUST])
skillratio += sc->data[sC_MAXOVERTHRUST]->val2;
  if(sc->data[sC_BERSERK])
skillratio += 100;
 }

you can just simply add in a statement which will reduce the damage ratio if the users used EDP ...

// Reduce Skill Damage by 90% if users used EDP
if( sc->data[sC_DPOISON] )
 skillratio -= 90;

hope this help you.

refer post #8

Edited by Emistry
Wrong Info ....
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  35
  • Topics Per Day:  0.01
  • Content Count:  311
  • Reputation:   46
  • Joined:  11/06/11
  • Last Seen:  

Thanks emistry is there any way to reduce the Level 1 EDP source? just the level 1 it gives x2 damage in all skills.

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

sorry not sure where is the exact location to edit this..coz i fail to locate the part that affect the damage.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  35
  • Topics Per Day:  0.01
  • Content Count:  311
  • Reputation:   46
  • Joined:  11/06/11
  • Last Seen:  

Ok thanks hope someone can help me with this one :)

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:  

BTW SC_DPOISON is not EDP suppose to be SC_EDP

here is what you need

		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;

so edit it to your liking...^^

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

LOL...i thought it was....O.O *facepalm*

coz i think of the "Deadly Poison" ....."D..Poison"..... /swt

now i know why i cant find the Damage Calculation part....LOL

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  35
  • Topics Per Day:  0.01
  • Content Count:  311
  • Reputation:   46
  • Joined:  11/06/11
  • Last Seen:  

Hello malufett i just want my level 1 EDP gives only 50% additional damage :)

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:  

change this @ status.c

val3 = 50*(val1+1); //Damage increase (+50 +50*lv%)

to

val3 = 50; // so regardless the level it gives +50%;

note: applies to all applicable skills..

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  35
  • Topics Per Day:  0.01
  • Content Count:  311
  • Reputation:   46
  • Joined:  11/06/11
  • Last Seen:  

That will not affect the level 5 EDP right ? just level 1?

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:  

nope...regardless of level...so level 1 to 5 gives a +50%...

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