Jump to content
  • 0

Modifiying Renovatio Skill.


Shade

Question


  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  123
  • Reputation:   29
  • Joined:  04/09/12
  • Last Seen:  

Hello there,

I am pretty sure this can be done but I am not sure where to start and how to do it.

I want to modify Renovatio skill from :

Recovers 3% of max HP every 5 seconds

To

Recovers [(BaseLevel+INT)*10] every 2 seconds

Thanks in advance.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  63
  • Reputation:   3
  • Joined:  07/12/12
  • Last Seen:  

source code. Try looking at skill.c

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:  

@status.c

	case SC_RENOVATIO:
	if( --(sce->val4) >= 0 )
	{
		status_heal(bl, status->max_hp * 3 / 100, 0, 2);
		sc_timer_next(5000 + tick, status_change_timer, bl->id, data);
		return 0;
	}
	break;

modify the

status->max_hp * 3 / 100
  • Upvote 1
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...