10x - Ten times the monsters! (Weapons added pg1)

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.
User avatar
Xaser
 
 
Posts: 10774
Joined: Sun Jul 20, 2003 12:15 pm

Re: 10x - Ten times the monsters! (Weapons added pg1)

Post by Xaser »

All right -- a bit of rearranging and the first two "gamemodes" are done! Here's a first look:
tenfold-r1.zip
Now you can select between "Tenfold" and "Hardcore" types, and balance has been adjusted to suit (ammo on Tenfold should be quite similar to normal Doom amounts, but on Hardcore you get 10x ammo to make up for weapon loss). Starting health has been upped a little (though max is still at 100) for balance, only half the enemies jump off cliffs, and monsters now come in different sizes to add a little variety. ;P


Thanks for your ideas, Baghead and Hotwax! The final three gametypes are derived from your ideas: My old "Overkill" idea was lame but I'm reusing the name for the Asteroids-esque splitting mode, the "Gauntlet" mode will have spawners, and the "Insanity" mode will have random groups of enemies spawning, based on relative difficulty. Not sure which one I'm gonna tackle next, though. Hmm.


I'm thinking about opening a new thread for my branch of this, but I'm leaving that up to you, Cutty, since it's your brainchild. ;P
You do not have the required permissions to view the files attached to this post.
User avatar
Cutmanmike
Posts: 11352
Joined: Mon Oct 06, 2003 3:41 pm
Operating System Version (Optional): Windows 10
Location: United Kingdom

Re: 10x - Ten times the monsters! (Weapons added pg1)

Post by Cutmanmike »

Yeah you do that, quit hijacking mah thread dawg :wink:
User avatar
Project Shadowcat
Posts: 9369
Joined: Thu Jul 14, 2005 8:33 pm
Preferred Pronouns: They/Them
Operating System Version (Optional): Windows 11
Graphics Processor: nVidia with Vulkan support
Location: Blacksburg, SC USA

Re: 10x - Ten times the monsters! (Weapons added pg1)

Post by Project Shadowcat »

Does anyone notice how Cutman always makes the ideas, and half the time someone makes a side-project out of it? Ghoul's Forest, ZPortal, now 10x. I mean, seriously. :P
User avatar
Cutmanmike
Posts: 11352
Joined: Mon Oct 06, 2003 3:41 pm
Operating System Version (Optional): Windows 10
Location: United Kingdom

Re: 10x - Ten times the monsters! (Weapons added pg1)

Post by Cutmanmike »

I had noticed that too. Usually tormentor spawns ideas from mine, which is great because he makes much better quality stuff than I. You forgot zombi outbreak too, but I'm not sure if torm got that from me or not. :)
User avatar
Unknown_Assassin
Posts: 2468
Joined: Wed Apr 12, 2006 5:17 pm
Location: Where dead carcasses lie

Re: 10x - Ten times the monsters! (Weapons added pg1)

Post by Unknown_Assassin »

This is pretty intense, especially Hardcore mode (Xaser's mod). :)
Doom Connector
Posts: 41
Joined: Tue Apr 22, 2008 3:03 pm

Re: 10x - Ten times the monsters! (Weapons added pg1)

Post by Doom Connector »

time spawner...turn each monster into spawner and have it spawn 10 times that monster. That should work.
User avatar
Kate
... in rememberance ...
Posts: 2975
Joined: Tue Jul 15, 2003 8:06 pm

Re: 10x - Ten times the monsters! (Weapons added pg1)

Post by Kate »

Image

Am I hardcore yet?

On a side note, I had to use -nosfx because my ears were bleeding from the intensity of the sound.
User avatar
MG_Man
Posts: 1401
Joined: Sat Jul 28, 2007 1:24 pm

Re: 10x - Ten times the monsters! (Weapons added pg1)

Post by MG_Man »

Doom Connector wrote:time spawner...turn each monster into spawner and have it spawn 10 times that monster. That should work.
What if the monster hasn't moved from it's original position when it happens? Then you'd have the monsters stuck inside each other.
User avatar
Cutmanmike
Posts: 11352
Joined: Mon Oct 06, 2003 3:41 pm
Operating System Version (Optional): Windows 10
Location: United Kingdom

Re: 10x - Ten times the monsters! (Weapons added pg1)

Post by Cutmanmike »

SnowKate709 wrote:Image

Am I hardcore yet?

On a side note, I had to use -nosfx because my ears were bleeding from the intensity of the sound.
Heh, now try that on map04 (or 5? The one with all the levels combined) :P
User avatar
Unknown_Assassin
Posts: 2468
Joined: Wed Apr 12, 2006 5:17 pm
Location: Where dead carcasses lie

Re: 10x - Ten times the monsters! (Weapons added pg1)

Post by Unknown_Assassin »

Cutmanmike wrote:Heh, now try that on map04 (or 5? The one with all the levels combined)
Silly Cutman, she is playing map04. :P Map 5 has all the levels combined. :mrgreen:
User avatar
HotWax
Posts: 10002
Joined: Fri Jul 18, 2003 6:18 pm
Location: Idaho Falls, ID

Re: 10x - Ten times the monsters! (Weapons added pg1)

Post by HotWax »

MG_Man wrote:
Doom Connector wrote:time spawner...turn each monster into spawner and have it spawn 10 times that monster. That should work.
What if the monster hasn't moved from it's original position when it happens? Then you'd have the monsters stuck inside each other.
Using ACS, the spawner could continually attempt to spawn enemies until 10 have appeared. The spawner would "pause" to allow monsters to get out of the way.

Code: Select all

script 1 (int monster, int id, int angle)
    int SpawnedCount = 0;

    while (SpawnedCount < 10) {
         SpawnedCount += SpawnSpot(name[monster], id, 0, angle);
         delay(35);
    }
}
marble
Posts: 64
Joined: Mon Jun 01, 2009 9:15 am

Re: 10x - Ten times the monsters! (Weapons added pg1)

Post by marble »

hey how about a game mode in wich the monsters remain the same but when you kill one another one appears inside it, ten times.
User avatar
wildweasel
Posts: 21706
Joined: Tue Jul 15, 2003 7:33 pm
Preferred Pronouns: He/Him
Operating System Version (Optional): A lot of them
Graphics Processor: Not Listed

Re: 10x - Ten times the monsters! (Weapons added pg1)

Post by wildweasel »

marble wrote:hey how about a game mode in wich the monsters remain the same but when you kill one another one appears inside it, ten times.
Point #1: That would be about as effective as just giving the monsters ten times the hit points.
Point #2: Nice 15-month bump, dude.
User avatar
Xaser
 
 
Posts: 10774
Joined: Sun Jul 20, 2003 12:15 pm

Re: 10x - Ten times the monsters! (Weapons added pg1)

Post by Xaser »

Aw, foot. And I completely forgot to ever do those other gamemodes I said I would... :P

Though admittedly, Baghead's 0x was probably the best idea spawned of them all. xP
JustGabriel
Posts: 84
Joined: Mon Jul 06, 2009 10:56 pm
Location: Just laying around trying to look alive

Re: 10x - Ten times the monsters! (Weapons added pg1)

Post by JustGabriel »

Simple idea but works out very well
Now I don't feel bad when using Xaser's 0verp0wer mod :P
Gotta Scythe 2 this sometime :3:

Return to “Abandoned/Dead Projects”