Jump to content
  • 0

[SOLVED] Mini Boss with big HP bar, but not MVP


Dani3lArt

Question


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  15
  • Reputation:   0
  • Joined:  09/02/17
  • Last Seen:  

Hello, I need help with this, I applied the diff of NEMO:

image.png.34be0c63e818b0a525f057325286f433.png

Because I want MVP with a big HP bar, but, only mini boss has it:
image.png.4722cb76de538bd347567431b9de5abc.png

And MVP are like this:

image.png.6547d07994a49c2924445c31697758e5.png

Thanks for helping me with this. /thx

 

Edit: My EXE date is 2020-04-01

Edited by Dani3lArt
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  15
  • Reputation:   0
  • Joined:  09/02/17
  • Last Seen:  

On 9/5/2021 at 4:40 PM, Easycore said:

Open cliff.cpp

Search every:

p.isBoss = ( (mob_data*)bl )->get_bosstype();

And replace for:

p.isBoss = ((mob_data*)bl)->get_bosstype()?2:0;

PS: Not tested.

Don't work but you give me a hint.
Fixed changing mob.hpp

enum e_mob_bosstype : uint8{
	BOSSTYPE_NONE,
	BOSSTYPE_MINIBOSS,
	BOSSTYPE_MVP
};

to

enum e_mob_bosstype : uint8{
	BOSSTYPE_NONE,
	BOSSTYPE_MVP,
	BOSSTYPE_MINIBOSS
};

Thank you so much.

Link to comment
Share on other sites

  • 1

  • Group:  Members
  • Topic Count:  36
  • Topics Per Day:  0.01
  • Content Count:  220
  • Reputation:   252
  • Joined:  04/08/13
  • Last Seen:  

Open cliff.cpp

Search every:

p.isBoss = ( (mob_data*)bl )->get_bosstype();

And replace for:

p.isBoss = ((mob_data*)bl)->get_bosstype()?2:0;

PS: Not tested.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  15
  • Reputation:   0
  • Joined:  09/02/17
  • Last Seen:  

Okay, let me check and tell you if it works. 

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