Jump to content
  • 0

Cicada Skin Sheeding - Modification


Cyrix

Question


  • Group:  Members
  • Topic Count:  44
  • Topics Per Day:  0.01
  • Content Count:  150
  • Reputation:   13
  • Joined:  02/16/12
  • Last Seen:  

Hi.

Can anyone tell me where to modify NJ_UTSUSEMI, not to freeze or petrify in physical attacks while active.

Thx.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 1

  • Group:  Members
  • Topic Count:  54
  • Topics Per Day:  0.01
  • Content Count:  513
  • Reputation:   83
  • Joined:  08/11/12
  • Last Seen:  

hi try this.

hope it helps.

status.c

find

case SC_FREEZE:
	//Undead are immune to Freeze/Stone
	if (undead_flag && !(flag&1))
		return 0;


replace with

	   case SC_FREEZE:
	//Undead are immune to Freeze/Stone or if UTSUSEMI is active
	if ((undead_flag && !(flag&1)) || sc->data[sC_UTSUSEMI])
		return 0;

be sure to recompile to your code.

Edited by jezznar
  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  44
  • Topics Per Day:  0.01
  • Content Count:  150
  • Reputation:   13
  • Joined:  02/16/12
  • Last Seen:  

?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  44
  • Topics Per Day:  0.01
  • Content Count:  150
  • Reputation:   13
  • Joined:  02/16/12
  • Last Seen:  

up

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