New Doom Forums  
Making the end of DooM2 harder (easy mod) - New Doom Forums
Go Back   New Doom Forums > Source Ports > Doomsday > Mods & Maps

Reply
 
Thread Tools Display Modes
Old March 27th, 2005, 08:59 AM   #1
GuntherDW
Commander Keen
 
GuntherDW's Avatar
 
Join Date: May 2004
Location: Belgium
Posts: 176
Making the end of DooM2 harder (easy mod)

http://users.telenet.be/GuntherDW/doom/doom2-009.jpg


all this doesn't require much, but deliveres a punch (yes i know it's a sucky mod , it's for the veteran doomers willing to prove theirselves

in /Src/jDoom/p_enemy.c, change

Code:
	// Probability distribution (kind of :),
	// decreasing likelihood.
	if(r < 50)
		type = MT_TROOP;
	else if(r < 90)
		type = MT_SERGEANT;
	else if(r < 120)
		type = MT_SHADOWS;
	else if(r < 130)
		type = MT_PAIN;
	else if(r < 160)
		type = MT_HEAD;
	else if(r < 162)
		type = MT_VILE;
	else if(r < 172)
		type = MT_UNDEAD;
	else if(r < 192)
		type = MT_BABY;
	else if(r < 222)
		type = MT_FATSO;
	else if(r < 246)
		type = MT_KNIGHT;
	else
		type = MT_BRUISER;
to :


Code:
	// Probability distribution (kind of :),
	// decreasing likelihood.
	if(r < 35)
		type = MT_BRUISER;
	else if(r < 55)
		type = MT_UNDEAD;
	else if(r < 125)
		type = MT_HEAD;
	else if(r < 185)
		type = MT_CYBORG;
	else if(r < 240)
		type = MT_BRUISER;
	else
		type = MT_CYBORG;
if you want to make the mod even harder (more random monsters, just tell me and i'll get on the job (i coded M_random512 & M_random1024 already and they work )

edit : be warned, you should keep the exe from this build seperate from the original jdoom, you don't want to have a mod that never goes away would u? (u'd have to recompile jdoom each time or install the normal binaries every time u want to play a normal game...)

Last edited by GuntherDW; March 27th, 2005 at 09:07 AM.
GuntherDW is offline   Reply With Quote
Old March 27th, 2005, 10:49 AM   #2
picklebro
Commander Keen
 
picklebro's Avatar
 
Join Date: Feb 2005
Posts: 750
can you make this a ded?
picklebro is offline   Reply With Quote
Old March 27th, 2005, 12:14 PM   #3
Xerxes
Commander Keen
 
Xerxes's Avatar
 
Join Date: Apr 2004
Location: France
Posts: 715
no we can't make it with a ded file
Xerxes is offline   Reply With Quote
Old March 28th, 2005, 05:27 PM   #4
picklebro
Commander Keen
 
picklebro's Avatar
 
Join Date: Feb 2005
Posts: 750
you should get permission to mod and post that version of jdoom so people can swap out executables whenver they feel like it!
picklebro is offline   Reply With Quote
Old March 29th, 2005, 03:50 AM   #5
Jimi
Commander Keen
 
Jimi's Avatar
 
Join Date: Jun 2004
Location: Neverwhere
Posts: 526
You don't need to have a new executable for that. A dll is enough... And you can just rename the new dll and use it with some new kicks profile...
Jimi is offline   Reply With Quote
Old March 29th, 2005, 03:51 AM   #6
GuntherDW
Commander Keen
 
GuntherDW's Avatar
 
Join Date: May 2004
Location: Belgium
Posts: 176
a dll for linux? naah

when i provide the source people can get their own version
when i provide a .so only the linux people get to play the mod...
GuntherDW is offline   Reply With Quote
Old March 29th, 2005, 03:53 AM   #7
Jimi
Commander Keen
 
Jimi's Avatar
 
Join Date: Jun 2004
Location: Neverwhere
Posts: 526
I don't have linux. I don't know how it works...
Jimi is offline   Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
making a ramp in doom(2) Skirmisher DOOM Series 14 January 31st, 2006 05:04 PM
Positions for making a Half life mod {TTr}Uber_soldat Other Games 0 December 6th, 2004 04:44 PM
Mod Making Help BC_BEAN Editing 2 August 1st, 2004 08:50 AM
Mod map making Jow DOOM Series 1 November 13th, 2002 11:16 PM


All times are GMT -7. The time now is 09:12 PM.


Powered by vBulletin® Version 3.8.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
NewDoom.com © 2000-2009 Mindless Games & Entertainment. All Rights Reserved.