Jump to content
  • 0

Disable EDP on Champion.


NightJar

Question


  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.01
  • Content Count:  47
  • Reputation:   0
  • Joined:  12/24/17
  • Last Seen:  

Hi,

 

I use custom cards on my server. 
SinxCard gives auto cast EDP. 

I want to disable the effect on champs coz it was over powered. 

Please help!

 

TIA! 

 

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  1137
  • Reputation:   290
  • Joined:  04/29/13
  • Last Seen:  

Wrong section. Moved to "Source Support".

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  737
  • Reputation:   47
  • Joined:  03/12/14
  • Last Seen:  

On 2/23/2018 at 11:56 AM, NightJar said:

Hi,

 

I use custom cards on my server. 
SinxCard gives auto cast EDP. 

I want to disable the effect on champs coz it was over powered. 

Please help!

 

TIA! 

 

Find This on Battle.c or battle.cpp

	if (sc->data[SC_EDP]) {
			switch(skill_id) {
				case AS_SPLASHER:
				// Pre-Renewal only: Soul Breaker and Meteor Assault ignores EDP
				// Renewal only: Grimtooth and Venom Knife ignore EDP
				// Both: Venom Splasher ignores EDP [helvetica]
#ifndef RENEWAL
				case ASC_BREAKER:
				case ASC_METEORASSAULT:
#else
				case AS_GRIMTOOTH:
				case AS_VENOMKNIFE:
#endif
					break; // skills above have no effect with edp

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.01
  • Content Count:  47
  • Reputation:   0
  • Joined:  12/24/17
  • Last Seen:  

3 hours ago, Bringer said:

Find This on Battle.c or battle.cpp

	if (sc->data[SC_EDP]) {
			switch(skill_id) {
				case AS_SPLASHER:
				// Pre-Renewal only: Soul Breaker and Meteor Assault ignores EDP
				// Renewal only: Grimtooth and Venom Knife ignore EDP
				// Both: Venom Splasher ignores EDP [helvetica]
#ifndef RENEWAL
				case ASC_BREAKER:
				case ASC_METEORASSAULT:
#else
				case AS_GRIMTOOTH:
				case AS_VENOMKNIFE:
#endif
					break; // skills above have no effect with edp

 

Great! Thanks!

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