PDA

View Full Version : Boss Doesn't Spawn



UnityAlex
09-27-2015, 10:05 PM
Alright, I'm on the home stretch of my first quest, that I will be releasing soon. Everything is fixed, and it is running flawlessly, except for one thing. A select few bosses (including Ganon) do not spawn. Instead, the heart container is immediately available , and the door is open. It basically treats it as if it's dead. Can't wait to get my quest out, and any help would be appreciated!

CJC
09-27-2015, 10:50 PM
While Ganon can be placed into the enemy list, he shouldn't (he can only be placed because it keeps the underlying code simple).

Instead, you should ensure that Ganon has the 'Ganon' enemy flag in the Enemy Editor (the default Ganon enemy has this set from the get-go) and then you should set the room type in the boss room as "Ganon".



I don't have an answer for the other bosses. Please tell us which bosses are having problems and what the screen flags of their rooms say.

UnityAlex
09-27-2015, 10:59 PM
Hello! Thanks for the response. I do not think the problem is not the bosses themselves, but rather the rooms that they are in. Any enemies placed in those rooms die. And I believe this is the same for Ganon, for I set that room type, and no dice.

Anarchy_Balsac
09-27-2015, 11:17 PM
Hello! Thanks for the response. I do not think the problem is not the bosses themselves, but rather the rooms that they are in. Any enemies placed in those rooms die. And I believe this is the same for Ganon, for I set that room type, and no dice.

Did you set the DMap to "NES Dungeon", because Ganon room will only ever work on that map type.

UnityAlex
09-27-2015, 11:55 PM
Did you set the DMap to "NES Dungeon", because Ganon room will only ever work on that map type.

Yes, I did. And the level numbers on the dmap are correct, too.

Anarchy_Balsac
09-28-2015, 12:05 AM
The only other things I can think of are if you set it to level 0, which I'm guessing you didn't, or you set it to a level number where you had already defeated enemies in another room flagged as a boss room (which stops enemies from spawning in ALL boss rooms of that level, or the Ganon room, even if it isn't flagged as a boss room itself).

UnityAlex
09-28-2015, 12:13 AM
The only other things I can think of are if you set it to level 0, which I'm guessing you didn't, or you set it to a level number where you had already defeated enemies in another room flagged as a boss room (which stops enemies from spawning in ALL boss rooms of that level, or the Ganon room, even if it isn't flagged as a boss room itself).

Ohhh... that is the reason. I was convinced that there could be multiple boss rooms. Also, is there any other way to make enemies not respawn? I want to have mini-bosses that stay dead.

Anarchy_Balsac
09-28-2015, 12:30 AM
Ohhh... that is the reason. I was convinced that there could be multiple boss rooms. Also, is there any other way to make enemies not respawn? I want to have mini-bosses that stay dead.

There's a flag in the enemy editor that makes specific enemies never respawn, you can easily use that for your minibosses.

UnityAlex
09-28-2015, 02:09 AM
Ohhh... that is the reason. I was convinced that there could be multiple boss rooms. Also, is there any other way to make enemies not respawn? I want to have mini-bosses that stay dead.


There's a flag in the enemy editor that makes specific enemies never respawn, you can easily use that for your minibosses.

Ok, thank you :)