Icon of Sin help!

Archive of the old editing forum
Forum rules
Before asking on how to use a ZDoom feature, read the ZDoom wiki first. This forum is archived - please use this set of forums to ask new questions.
Locked
Lazarus
Posts: 20
Joined: Mon Oct 04, 2004 11:24 am
Location: England

Icon of Sin help!

Post by Lazarus »

Is it possible to have it so that when the big brain is destroyed the game does not end? Or would this have to be altered in the source?

Only i want to have more than one in a level.

When a big brain is destroyed i want the level to keep on going and also have some way of destroying the Spawn Cube shooter that i want to destroy. Otherwise, because the things are made up of seperate parts, the Spawn cube would keep firing even after the big brain for that icon had been destroyed.
User avatar
Chris
Posts: 2979
Joined: Thu Jul 17, 2003 12:07 am
Graphics Processor: ATI/AMD with Vulkan/Metal Support

Post by Chris »

The boss brain itself is just a damageable thing that ends the level/game when it dies. You can use (or create) anything else in its place, and use an ACS script for when the thing dies.
User avatar
Finalizer
Posts: 180
Joined: Fri Sep 24, 2004 6:07 am

Post by Finalizer »

...Or, you can simply use dehacked to edit the last frame in the Big Brain's death sequence. (Big Brain = final boss)

(I think this is how it should look)

[CODEPTR]

Frame 783 = NULL

This way, the last frame in it's death sequence does nothing, so the big brain simply dies, but doesn't end the level.

I hope this is what you're looking for.

EDIT: I just noticed the thing about the cube still spawning. Yes, they're two seperate things. However, you could try making a sort of decorate that looks like the Big Brain, shoots out a cube projectile that has no clipping, and the cube projectile 'drops' a demon... I'm not sure how well that'd work, but it's worth giving a try.
Lazarus
Posts: 20
Joined: Mon Oct 04, 2004 11:24 am
Location: England

Post by Lazarus »

Thanx for the help!

Also whilst I've been working with the end boss, I noticed that there was a bug in it. Well it's not exactly a bug of sorts.

It's just that in the original doom when the big brain died it caused a series of explosions to happen around it, giving the effect that the face was exploding. However, this has been left out of zdoom.

I don't know whether it was left out on purpose but i think it removes some of the feel of the end boss. It would be nice to have this feature added in.
User avatar
HotWax
Posts: 10002
Joined: Fri Jul 18, 2003 6:18 pm
Location: Idaho Falls, ID

Post by HotWax »

Just remove the bossbrain's final pointer, as Finalizer suggested, and then give it this special:

Thing_Remove(X);

where X is the TID of the cube spawner.

When the boss brain dies, it'll take the spawner with it.
Lazarus wrote:It's just that in the original doom when the big brain died it caused a series of explosions to happen around it, giving the effect that the face was exploding. However, this has been left out of zdoom.
Works for Me!(tm)
Lazarus
Posts: 20
Joined: Mon Oct 04, 2004 11:24 am
Location: England

Post by Lazarus »

It works sometimes for me.

Does on Doom 2 but not on Plutonia or TNT.
User avatar
Enjay
 
 
Posts: 27160
Joined: Tue Jul 15, 2003 4:58 pm
Location: Scotland
Contact:

Post by Enjay »

Lazarus wrote:It's just that in the original doom when the big brain died it caused a series of explosions to happen around it, giving the effect that the face was exploding. However, this has been left out of zdoom.
The explosion effect does work. It spawns the explosion effects around 320 units to the South of wherever the boss object is placed. (The direction the object is facing is irrelevant - the explosions are always to the South). So, if you place an object somewhere and are standing to the East, West or North when it dies, chances are you'll not see the explosions. Similarly, if you are closer than 320 units, you may not see them either (but you may get killed from them exploding behind you ;) )
Locked

Return to “Editing (Archive)”