Brütal Doom v0.18

Projects that have specifically been abandoned or considered "dead" get moved here, so people will quit bumping them. If your project has wound up here and it should not be, contact a moderator to have it moved back to the land of the living.
mrthejoshmon
Posts: 2
Joined: Sun Feb 10, 2013 10:42 am

Re: Brütal Doom v0.17: Brutal Halloween Edition

Post by mrthejoshmon »

Mr. Chris wrote:
Zombies and imps being knocked by explosion or kick(?) can get stuck on top of objects like the barrel seen here.

Courtesy thejoshmon from DW for posting it on Youtube.
I went rampant with a rocket launcher for five minutes, it quickly turned into an episode of extreme house makeover!
and then that zombie spoiled the fun by becoming stuck :?
User avatar
Sergeant_Mark_IV
Posts: 812
Joined: Wed Feb 02, 2011 12:44 pm
Location: United Communist Nazi Republic Dictactorship of Banana Land (Brazil)

Re: Brütal Doom v0.17: Brutal Halloween Edition

Post by Sergeant_Mark_IV »

Looks like it was a problem with the floor detection. I was using the shitty A_CheckFloor to check if the monster had reached the ground. But now I changed to A_JumpIf(momz==0), and it's fixed.
Gez
 
 
Posts: 17833
Joined: Fri Jul 06, 2007 3:22 pm

Re: Brütal Doom v0.17: Brutal Halloween Edition

Post by Gez »

TerminusEst13 wrote:
Vaecrius wrote:Zandronum still doesn't have RandomSpawners? o_O
It does, actually!
Then this:

Code: Select all

Actor BelphegorSpawner : RandomSpawner 2747 { DropItem "LordBelphegor" }
... is all the code one needs to create a spawner; and in addition it will correctly handle any spawn flag (e.g. ambush, friendly, dormant, etc.).
User avatar
Sergeant_Mark_IV
Posts: 812
Joined: Wed Feb 02, 2011 12:44 pm
Location: United Communist Nazi Republic Dictactorship of Banana Land (Brazil)

Re: Brütal Doom v0.17: Brutal Halloween Edition

Post by Sergeant_Mark_IV »

Gez wrote:in addition it will correctly handle any spawn flag (e.g. ambush, friendly, dormant, etc.).
Even TID and Scripts related to it?
Gez
 
 
Posts: 17833
Joined: Fri Jul 06, 2007 3:22 pm

Re: Brütal Doom v0.17: Brutal Halloween Edition

Post by Gez »

Yep, those too. Oh, and boss monsters.

Code: Select all

Actor DeadSimpleSimplifier : RandomSpawner replaces Fatso { DropItem "DoomImp" }
Load that up and go to MAP07. Surprise, the walls melt when you've killed all the imps. Now try this one:

Code: Select all

Actor DeadSimpleSimplifierThatDoNotWork replaces Fatso
{
    +NOCLIP
    Radius 0
    Height 0
    States
    {
    Spawn:
        TNT1 A 0 A_SpawnItem("DoomImp")
        Stop
    }
}
User avatar
Sergeant_Mark_IV
Posts: 812
Joined: Wed Feb 02, 2011 12:44 pm
Location: United Communist Nazi Republic Dictactorship of Banana Land (Brazil)

Re: Brütal Doom v0.17: Brutal Halloween Edition

Post by Sergeant_Mark_IV »

That was really helpful for my Arsenal Expansion. Thanks.

One question, does a weapon obtained via Random Spawners will respawn on multuplayer?
Gez
 
 
Posts: 17833
Joined: Fri Jul 06, 2007 3:22 pm

Re: Brütal Doom v0.17: Brutal Halloween Edition

Post by Gez »

Yes, this is a function of the weapon not having the DROPPED flag, which is handled by random spawners (if they aren't dropped themselves, what they spawn doesn't have that flag).
User avatar
Neccronixis
Posts: 206
Joined: Fri Dec 23, 2011 10:53 pm

Re: Brütal Doom v0.17: Brutal Halloween Edition

Post by Neccronixis »

Is it possible for the large clumps and splats of blood on the walls to have varieties in tone? Because it looks alot red paint. Or is this just how gzdoom renders it?
User avatar
The Zombie Killer
Posts: 1528
Joined: Thu Jul 14, 2011 12:06 am
Location: Gold Coast, Queensland, Australia

Re: Brütal Doom v0.17: Brutal Halloween Edition

Post by The Zombie Killer »

Looks like it was a problem with the floor detection. I was using the shitty A_CheckFloor to check if the monster had reached the ground. But now I changed to A_JumpIf(momz==0), and it's fixed.
You could use this ACS:

Code: Select all

if (GetActorZ(0) - GetActorFloorZ(0) == 0) {
	if (CheckInventory("OnGround") < 1) {
		GiveInventory("OnGround", 1);
	}
}
I find it very reliable for checking whether an actor is on the ground or not. Checking the Z momentum works too, but isn't the most reliable way of doing things.

-MBF
User avatar
Sergeant_Mark_IV
Posts: 812
Joined: Wed Feb 02, 2011 12:44 pm
Location: United Communist Nazi Republic Dictactorship of Banana Land (Brazil)

Re: Brütal Doom v0.17: Brutal Halloween Edition

Post by Sergeant_Mark_IV »

3 days left!

User avatar
Mike12
Posts: 673
Joined: Fri May 13, 2011 9:10 am

Re: Brütal Doom v0.17: Brutal Halloween Edition

Post by Mike12 »

Sergeant_Mark_IV wrote:3 days left!

Holy crap, that music. I literally cannot stop laughing.

(Looks amazing, by the way)
User avatar
Matt
Posts: 9696
Joined: Sun Jan 04, 2004 5:37 pm
Preferred Pronouns: They/Them
Operating System Version (Optional): Debian Bullseye
Location: Gotham City SAR, Wyld-Lands of the Lotus People, Dominionist PetroConfederacy of Saudi Canadia
Contact:

Re: Brütal Doom v0.17: Brutal Halloween Edition

Post by Matt »

On the one hand, there was a rape joke.

On the other, it was kept reasonably not-more-problematic than the trivialization of violence that is the whole point of this mod.

I think I'm ok with this.

(brain kicking for brutalness)
Dan50
Posts: 241
Joined: Sat Aug 27, 2011 6:00 pm

Re: Brütal Doom v0.17: Brutal Halloween Edition

Post by Dan50 »

[youtube]http://youtu.be/ZulJCYES5Do[/youtube]


Looks Awesome :D
User avatar
twinkieman93
Posts: 1075
Joined: Fri Aug 10, 2007 11:13 pm

Re: Brütal Doom v0.17: Brutal Halloween Edition

Post by twinkieman93 »

Vaecrius wrote:On the one hand, there was a rape joke.
I almost feel he's doing it on purpose now. But, hey, there's no such thing as bad press. I for one can't wait to see what he's added to the new version. Even if Mark isn't the best person in the world(not even close), he's still got some talent for making mods. This you can't deny.
User avatar
Neccronixis
Posts: 206
Joined: Fri Dec 23, 2011 10:53 pm

Re: Brütal Doom v0.17: Brutal Halloween Edition

Post by Neccronixis »

I lol'd at the flaming zombie as he toppled of the edge :D
Locked

Return to “Abandoned/Dead Projects”