Jump to content
  • 0

Question

Posted

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!

12 answers to this question

Recommended Posts

Posted

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

Posted (edited)

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

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

Posted

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

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...