donpedro Posted March 24, 2014 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 20 Reputation: 2 Joined: 03/24/14 Last Seen: June 15, 2014 Share Posted March 24, 2014 how to increase sanctuary heal effect?. in our server it only heal 777, i want to make it 20k can anyone help me with this matter?. tnx and godbless. Quote Link to comment Share on other sites More sharing options...
sandbox Posted March 24, 2014 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 949 Reputation: 174 Joined: 06/12/12 Last Seen: Yesterday at 09:36 AM Share Posted March 24, 2014 src/map/skill.c Edit this line: case PR_SANCTUARY: hp = (skill_lv>6)?777:skill_lv*100; break; Quote Link to comment Share on other sites More sharing options...
donpedro Posted March 24, 2014 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 20 Reputation: 2 Joined: 03/24/14 Last Seen: June 15, 2014 Author Share Posted March 24, 2014 shall i just change the 777 to 20000? Quote Link to comment Share on other sites More sharing options...
sandbox Posted March 24, 2014 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 949 Reputation: 174 Joined: 06/12/12 Last Seen: Yesterday at 09:36 AM Share Posted March 24, 2014 Yes, or to any value you want. Because based on the skill, after level 6, its heal will be a constant 777. You can try looking for the formula of heal too, and based it on int Quote Link to comment Share on other sites More sharing options...
donpedro Posted March 24, 2014 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 20 Reputation: 2 Joined: 03/24/14 Last Seen: June 15, 2014 Author Share Posted March 24, 2014 ok tnx sir sandbox Quote Link to comment Share on other sites More sharing options...
Radzmik Posted March 24, 2014 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 34 Reputation: 1 Joined: 07/04/13 Last Seen: August 21, 2015 Share Posted March 24, 2014 (edited) src/map/skill.c then find this line case PR_SANCTUARY:hp = (skill_lv>6)?777:skill_lv*100;break; Change to case PR_SANCTUARY: if( ( (TBL_MOB*)target)->class_ == MOBID_EMPERIUM ) hp = (skill_lv>6)?20000:skill_lv*1; else hp = (skill_lv>6)?777:skill_lv*100; break; Then Recompile your server done Edited March 24, 2014 by Radzmik Quote Link to comment Share on other sites More sharing options...
Question
donpedro
how to increase sanctuary heal effect?. in our server it only heal 777, i want to make it 20k
can anyone help me with this matter?.
tnx and godbless.
Link to comment
Share on other sites
5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.