Jump to content
  • 0

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


Question

Posted (edited)

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

3 answers to this question

Recommended Posts

  • 0
Posted
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.

  • 1
Posted

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.

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...