Jump to content
  • 0

How to make MVP hard to kill


Boy

Question


  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.01
  • Content Count:  134
  • Reputation:   4
  • Joined:  09/28/12
  • Last Seen:  

Hi rAthena,

 

I need help. How can i make mvp hard to kill because in 3rd job + custom item mvp like Naght Sieger and etc easy to die.

 

Thanks.

Link to comment
Share on other sites

13 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  155
  • Topics Per Day:  0.03
  • Content Count:  647
  • Reputation:   16
  • Joined:  11/21/11
  • Last Seen:  

try to increase HP and DEF,MDEF, Stats?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  24
  • Reputation:   5
  • Joined:  07/18/13
  • Last Seen:  

I think he is asking how to do so. Might want to take a look at rathena wiki. http://rathena.org/wiki/Custom_Mobs

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.01
  • Content Count:  134
  • Reputation:   4
  • Joined:  09/28/12
  • Last Seen:  

thanks for reply. can u advise me what stat i should change because if more DEF player use thantos card. i think it so pain right.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  31
  • Topics Per Day:  0.01
  • Content Count:  491
  • Reputation:   19
  • Joined:  11/19/11
  • Last Seen:  

add mvp skil like dispell or other skill  /no1

change monster element and race

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.01
  • Content Count:  134
  • Reputation:   4
  • Joined:  09/28/12
  • Last Seen:  

@Akbare thanks :)/no1

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  37
  • Topics Per Day:  0.01
  • Content Count:  177
  • Reputation:   9
  • Joined:  06/25/12
  • Last Seen:  

There is an option on mob.conf set it's ai to x200 something. Not sure, there's an option there. Go explore it.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  40
  • Topics Per Day:  0.01
  • Content Count:  530
  • Reputation:   33
  • Joined:  01/17/12
  • Last Seen:  

on conf/battle/monster.conf

 

you can also try this

// The HP rate of MVPs. (Note 2)
mvp_hp_rate: 100
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  209
  • Topics Per Day:  0.05
  • Content Count:  892
  • Reputation:   27
  • Joined:  12/09/11
  • Last Seen:  

add Dragon Breathe skill and make the Db can bypass LP and Pneuma

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  53
  • Topics Per Day:  0.01
  • Content Count:  240
  • Reputation:   40
  • Joined:  04/27/13
  • Last Seen:  

on conf/battle/monster.conf

 

you can also try this

// The HP rate of MVPs. (Note 2)
mvp_hp_rate: 100

 

and also try to increase this

conf\battle\skill.conf

 

// Level and Strength of "MVP heal". When someone casts a heal of this level or

// above, the heal formula is bypassed and this value is used instead.

max_heal: 9999

max_heal_lv: 11

 

// Max Possible Level of Monster skills

// Note: If your MVPs are too tough, reduce it to 10.

mob_max_skilllvl: 100

Edited by themon
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  2997
  • Reputation:   1130
  • Joined:  05/27/12
  • Last Seen:  

To expand on what others posted about mob skills - I don't know if you've noticed this feature in mob_skill_db:

// Note: if a negative MobID is provided, the skill will be treated as 'global':

// -1: added for all boss types.

// -2: added for all normal types.

// -4: added for all mobs.

That's an easy way to add skills to all your bosses at once.
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  53
  • Reputation:   4
  • Joined:  02/08/12
  • Last Seen:  

Wow thanks euphy u give an idea

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  509
  • Reputation:   80
  • Joined:  11/20/11
  • Last Seen:  

Euphy, on 25 Jul 2013 - 23:04, said:

To expand on what others posted about mob skills - I don't know if you've noticed this feature in mob_skill_db:

// Note: if a negative MobID is provided, the skill will be treated as 'global':
//	-1: added for all boss types.
//	-2: added for all normal types.
//	-4: added for all mobs.
That's an easy way to add skills to all your bosses at once.

sorry euphy

REPLACE INTO `mob_skill_db2` VALUES (-4,'ALLMOB@NPC_POWERUP','attack',349,5,10000,0,10,'no','self','myhpltmaxrate','90',NULL,NULL,NULL,NULL,NULL,'6',NULL);

i just tried those code but the monsters don't cast powerup

---- EDIT ---

code WORK /heh

and the documentation should be

// Note: if a negative MobID is provided, the skill will be treated as 'global':
//	-1: added for all normal types.
//	-2: added for all boss types.

because

for (i = 1; i < MAX_MOB_DB; i++)
		{
			if (mob_db_data[i] == NULL)
				continue;
			if (mob_db_data[i]->status.mode&MD_BOSS)
			{
				if (!(mob_id&2))//Skill not for bosses
					continue;
			} else
				if (!(mob_id&1))//Skill not for normal enemies.
					continue;

			ARR_FIND( 0, MAX_MOBSKILL, j, mob_db_data[i]->skill[j].skill_id == 0 );
			if(j==MAX_MOBSKILL)
				continue;

			memcpy (&mob_db_data[i]->skill[j], ms, sizeof(struct mob_skill));
			mob_db_data[i]->maxskill=j+1;
		}

no argument support <; -2

CMIIW

Edited by Kichi
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  2997
  • Reputation:   1130
  • Joined:  05/27/12
  • Last Seen:  

Oh, oops. That should be -3, not -4. I'll edit it shortly.

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