Ultra-Violence+

Handy guides on how to do things, written by users for users.

Moderators: GZDoom Developers, Raze Developers

Forum rules
Please don't start threads here asking for help. This forum is not for requesting guides, only for posting them. If you need help, the Editing forum is for you.
Post Reply
User avatar
Rachael
Posts: 13557
Joined: Tue Jan 13, 2004 1:31 pm
Preferred Pronouns: She/Her
Contact:

Ultra-Violence+

Post by Rachael »

I see some people asking about UV+ being an official feature in GZDoom.

UV+ brings about the following changes to gameplay:
  • Ultra-Violence skill level
  • Monsters are now fast
  • All multiplayer objects are now spawned with the level
The first two were easily achievable in all previous releases of GZDoom, and the third one "technically" was achievable with fake netplay (either "-host 1" on the command line, or entering the console command "map map01 coop") but it did not truly satisfy the requirement since UV+ did not actually fake multiplayer, it just changed the spawning parameters of previously multiplayer-only objects. Marisa Kirisame had a mod that changed that for previous versions of GZDoom, however with the release of 4.5.0 it is now also a native feature.

There are two ways to do UV+ with the release of GZDoom 4.5.0 - if you want to do it via mod, use the following skill definition:

Code: Select all

skill hardplus
{
	SpawnFilter = Hard
	Name = "Ultra-Violence+"
	Key = "u"
	FastMonsters
	SpawnMulti
}
(modify to your liking, of course)

There is also a way to invoke it directly using the console. With unmodded Doom (without gameplay mods) the following commands will work:

Code: Select all

sv_alwaysspawnmulti 1
sv_fastmonsters 1
skill 3
map map01
Note that adding "coop" to the end of mapname is not needed.

Hopefully this will help you satisfy your UV+ urges from within GZDoom. :) Enjoy!
User avatar
Marisa the Magician
Posts: 3886
Joined: Fri Feb 08, 2008 9:15 am
Preferred Pronouns: She/Her
Operating System Version (Optional): (btw I use) Arch
Graphics Processor: nVidia with Vulkan support
Location: Vigo, Galicia
Contact:

Re: Ultra-Violence+

Post by Marisa the Magician »

Yay I've been acknowledged.
Post Reply

Return to “Tutorials”