why not have the bossbrain fire out a random miniboss?Kinsie wrote:Probably not. It'd be nice to have the BossBrain fire one out as a "miniboss" that renders the BossBrain vulnerable upon death, but there's so many different variations of that one fight for so many different purposes that I don't want to inadvertantly break a death-exit or whatever.rabid marine wrote:YET ANOTHER QUESTION: Will the virtual icon of sin return as a boss that takes you to a special map? will he/she/it return at all?
MetaDoom v7.1 "Ghost" - This Mod Has Moved. See OP for details.
Forum rules
The Projects forums are only for projects. If you are asking questions about a project, either find that project's thread, or start a thread in the General section instead.
Got a cool project idea but nothing else? Put it in the project ideas thread instead!
Projects for any Doom-based engine (especially 3DGE) are perfectly acceptable here too.
Please read the full rules for more details.
The Projects forums are only for projects. If you are asking questions about a project, either find that project's thread, or start a thread in the General section instead.
Got a cool project idea but nothing else? Put it in the project ideas thread instead!
Projects for any Doom-based engine (especially 3DGE) are perfectly acceptable here too.
Please read the full rules for more details.
-
- Posts: 95
- Joined: Sun Jul 31, 2016 8:18 pm
Re: [WIP] MetaDoom - Thank You For The Demon (Coming Soon!)
-
-
- Posts: 16891
- Joined: Tue Oct 02, 2012 2:20 am
- Location: An ancient Escape Shuttle(No longer active here anymore)
Re: [WIP] MetaDoom - Thank You For The Demon (Coming Soon!)
*Doomguy's vigorous chain-nudge penetrates the life out of everything he sees*
But secondary attack looks fine, though!
-
- Posts: 513
- Joined: Tue Mar 24, 2015 3:43 pm
- Location: Steam: faslrn
Re: [WIP] MetaDoom - Thank You For The Demon (Coming Soon!)
I feel like there should be more of a windup to really feel he is thrusting that chainsaw into their spleens.Captain J wrote:*Doomguy's vigorous chain-nudge penetrates the life out of everything he sees*
But secondary attack looks fine, though!
-
- Posts: 497
- Joined: Thu Oct 31, 2013 12:33 pm
Re: [WIP] MetaDoom - Thank You For The Demon (Coming Soon!)
Can't you just use ACS to check the map#, and if its anything other than map30, give the bossbrain a token to skip the spawning and just die instead?rabid marine wrote:why not have the bossbrain fire out a random miniboss?Kinsie wrote:Probably not. It'd be nice to have the BossBrain fire one out as a "miniboss" that renders the BossBrain vulnerable upon death, but there's so many different variations of that one fight for so many different purposes that I don't want to inadvertantly break a death-exit or whatever.rabid marine wrote:YET ANOTHER QUESTION: Will the virtual icon of sin return as a boss that takes you to a special map? will he/she/it return at all?
I mean, I know you can use ACS to check the level number so maybe you can use that?
-
- Posts: 108
- Joined: Thu Mar 17, 2016 12:09 pm
Re: [WIP] MetaDoom - Thank You For The Demon (Chainsaw Video
well, it's bosseye that does the spawning, not bossbrain
so you could use that, except naturally there's maps which litter bosseyes around to act as a way to constantly keep the player fighting for the entire map, with no breaks at all, and may not even have a bossbrain!
I guess you could just have the brains A_ChangeFlag("INVULNERABLE", true) if there's any bosseye-specific minibosses around on the map, so it's really not that bad, although then you have the brains vulnerable until minibosses get spat out
so I guess make the brains invulnerable unless:
1. there's no bosseyes on the map
2. at least 1 miniboss per 2 bosseyes (or whatever ratio you want) have been spawned and killed, rounding up, so that minibosses that get lost in the noise won't stall the game forever
but then what if some bosseyes never get alerted? what do you do then? do we only count active bosseyes in the dead miniboss:bosseye ratio? do we just assume that you'll wake up at least 50% of them? do we have them start already alert, without the need to see or hear you?
welcome to the problem of needing to support literally thousands of maps; pretty much any assumption you make will have an example wad breaking it, and it will likely have been made at least five years ago.
(and yes I am always incredibly picky about map compatibility)
so you could use that, except naturally there's maps which litter bosseyes around to act as a way to constantly keep the player fighting for the entire map, with no breaks at all, and may not even have a bossbrain!
I guess you could just have the brains A_ChangeFlag("INVULNERABLE", true) if there's any bosseye-specific minibosses around on the map, so it's really not that bad, although then you have the brains vulnerable until minibosses get spat out
so I guess make the brains invulnerable unless:
1. there's no bosseyes on the map
2. at least 1 miniboss per 2 bosseyes (or whatever ratio you want) have been spawned and killed, rounding up, so that minibosses that get lost in the noise won't stall the game forever
but then what if some bosseyes never get alerted? what do you do then? do we only count active bosseyes in the dead miniboss:bosseye ratio? do we just assume that you'll wake up at least 50% of them? do we have them start already alert, without the need to see or hear you?
welcome to the problem of needing to support literally thousands of maps; pretty much any assumption you make will have an example wad breaking it, and it will likely have been made at least five years ago.
(and yes I am always incredibly picky about map compatibility)
-
- Posts: 192
- Joined: Sat Jan 09, 2010 4:33 pm
Re: [WIP] MetaDoom - Thank You For The Demon (Chainsaw Video
How will ultra nightmare work with mapsets that have death exits?
-
- Posts: 7402
- Joined: Fri Oct 22, 2004 9:22 am
- Graphics Processor: nVidia with Vulkan support
- Location: MAP33
Re: [WIP] MetaDoom - Thank You For The Demon (Chainsaw Video
Yeah, I'm trying to keep compatibility, but even on MAP30s there's a lot of different variations on endboss construction, like multiple BossEyes etc... it's a tough issue to design around.ijon wrote:well, it's bosseye that does the spawning, not bossbrain
so you could use that, except naturally there's maps which litter bosseyes around to act as a way to constantly keep the player fighting for the entire map, with no breaks at all, and may not even have a bossbrain!
I guess you could just have the brains A_ChangeFlag("INVULNERABLE", true) if there's any bosseye-specific minibosses around on the map, so it's really not that bad, although then you have the brains vulnerable until minibosses get spat out
so I guess make the brains invulnerable unless:
1. there's no bosseyes on the map
2. at least 1 miniboss per 2 bosseyes (or whatever ratio you want) have been spawned and killed, rounding up, so that minibosses that get lost in the noise won't stall the game forever
but then what if some bosseyes never get alerted? what do you do then? do we only count active bosseyes in the dead miniboss:bosseye ratio? do we just assume that you'll wake up at least 50% of them? do we have them start already alert, without the need to see or hear you?
welcome to the problem of needing to support literally thousands of maps; pretty much any assumption you make will have an example wad breaking it, and it will likely have been made at least five years ago.
(and yes I am always incredibly picky about map compatibility)
E1M8's ending works fine from what I've tried. Anything else? Currently untested but I assume it won't work unless it somehow beats a DEATH script to execution.ArchXeno wrote:How will ultra nightmare work with mapsets that have death exits?
In other news, all the "base" weapons are implemented and in the engine now! Some still need extra bits of polish here and there, but they're in!
BFG 9000
The. Ultimate. Gun. The prize of the military's arsenal, the BFG 9000 combines everything the UAC knows about weaponized plasma, weaponized Argent Energy, and weaponized pretty-much-everything into one 300-pound package. While it's the most powerful and most effective weapon mankind has ever laid its eyes upon, its sheer size renders it unportable and impossible for one man to wield (well, unless that one man was really, REALLY angry, but what are the odds?), rendering it more of a series of targets for weapons designers to try and reach for.
Information about the BFG is highly classified. All that we know right now is that it has two firing methods like many other weapons...
-
- Posts: 497
- Joined: Thu Oct 31, 2013 12:33 pm
Re: [WIP] MetaDoom - Thank You For The Demon (Chainsaw Video
Nonono, what I meant was, if Kinsie decides to have a replacement for the bossbrain, and has it spawn a unique monster on death, to use ACS to deteremine what map the player is on, and if it isn't map30, give it a token so it will skip the part the spawns the monster, and just die. You don't need a Bosseye to do that, you know, you can have any monster spawn anything upon death, see [wiki]A_SpawnItem[/wiki] or [wiki]A_DropItem[/wiki]ijon wrote:well, it's bosseye that does the spawning, not bossbrain
so you could use that, except naturally there's maps which litter bosseyes around to act as a way to constantly keep the player fighting for the entire map, with no breaks at all, and may not even have a bossbrain!
I guess you could just have the brains A_ChangeFlag("INVULNERABLE", true) if there's any bosseye-specific minibosses around on the map, so it's really not that bad, although then you have the brains vulnerable until minibosses get spat out
so I guess make the brains invulnerable unless:
1. there's no bosseyes on the map
2. at least 1 miniboss per 2 bosseyes (or whatever ratio you want) have been spawned and killed, rounding up, so that minibosses that get lost in the noise won't stall the game forever
but then what if some bosseyes never get alerted? what do you do then? do we only count active bosseyes in the dead miniboss:bosseye ratio? do we just assume that you'll wake up at least 50% of them? do we have them start already alert, without the need to see or hear you?
welcome to the problem of needing to support literally thousands of maps; pretty much any assumption you make will have an example wad breaking it, and it will likely have been made at least five years ago.
(and yes I am always incredibly picky about map compatibility)
Seriously, go take a look at http://forum.zdoom.org/viewtopic.php?f=19&t=52102, it does essentially the same thing I'm talking about, though I don't know about the ACS skip thing to keep it from spawning the actual final boss when the bossbrain is in any map other than map30.
Edit: you'll need to tweak some options in Bratwurst for the thing to happen.
Spoiler:
-
- Posts: 108
- Joined: Thu Mar 17, 2016 12:09 pm
Re: [WIP] MetaDoom - Thank You For The Demon (Chainsaw Video
... when the bossbrain dies, the map ends
so either you're suggesting having a miniboss appear for like a second before the map ends, or you're suggesting breaking death-exits on map30
and anyway the only thing technically limiting bossbrain fights to map30 is that monsters can telefrag only on map30. if you don't care about that, nothing stops you from putting them on other maps.
so either you're suggesting having a miniboss appear for like a second before the map ends, or you're suggesting breaking death-exits on map30
and anyway the only thing technically limiting bossbrain fights to map30 is that monsters can telefrag only on map30. if you don't care about that, nothing stops you from putting them on other maps.
-
- Posts: 7402
- Joined: Fri Oct 22, 2004 9:22 am
- Graphics Processor: nVidia with Vulkan support
- Location: MAP33
Re: [WIP] MetaDoom - Thank You For The Demon (Chainsaw Video
Pretty sure any changes I ultimately make to the Icon, if any, will be commented out by default to avoid issues. That's the route I'm gonna take with the WolfSS, anyway.
-
- Posts: 1235
- Joined: Thu Nov 06, 2014 1:53 pm
Re: [WIP] MetaDoom - Thank You For The Demon (Chainsaw Video
Scythe MAP10, among many others.Kinsie wrote:E1M8's ending works fine from what I've tried. Anything else? Currently untested but I assume it won't work unless it somehow beats a DEATH script to execution.
Which ... really I can't imagine it beating a DEATH script, considering it has to wait for a boss brain to fully die.
-
- Posts: 453
- Joined: Tue Feb 10, 2015 2:51 am
- Location: Does anyone put a serious answer here?
Re: [WIP] MetaDoom - Thank You For The Demon (Chainsaw Video
I was actually wondering about those. Is there a chance of them being occasionally replaced with nazis from the Muse Software games, or anything from RtCW onwards? I mean I know this is MetaDoom and not MetaWolf, but I still think it'd be neat to see what happens when something from outside the franchise gets the same "combining versions of it from across the franchise" treatment.Kinsie wrote:That's the route I'm gonna take with the WolfSS, anyway.
-
- Posts: 212
- Joined: Fri Aug 05, 2016 8:41 am
Re: [WIP] MetaDoom - Thank You For The Demon (Coming Soon!)
Hey, this looks pretty neato. Just out of curiosity though, will this thing eventually tell you how and/or what you were killed by?
-
- Posts: 7402
- Joined: Fri Oct 22, 2004 9:22 am
- Graphics Processor: nVidia with Vulkan support
- Location: MAP33
Re: [WIP] MetaDoom - Thank You For The Demon (Coming Soon!)
I hope so, but it'll require a bit of work. I've been told that there isn't really a "proper" way to determine what killed the player via ACS, so I guess it's gonna be some gross hacks later on.Pompous Seed wrote:Hey, this looks pretty neato. Just out of curiosity though, will this thing eventually tell you how and/or what you were killed by?
-
-
- Posts: 16891
- Joined: Tue Oct 02, 2012 2:20 am
- Location: An ancient Escape Shuttle(No longer active here anymore)
Re: [WIP] MetaDoom - Thank You For The Demon (Chainsaw Video
Also don't forget the enviroment and suicide obituary too!