Converting DOM to a DM Map

Tutorials and discussions about Mapping - Introduce your own ones!
Post Reply
Loose Cannon
Skilled
Posts: 165
Joined: Tue Jan 19, 2016 4:17 am

Converting DOM to a DM Map

Post by Loose Cannon »

Hi everyone:

I've searched through a bunch of threads (as I'm sure it's been discussed before) and can't seem to find a way to change the gametype of a DOM match to a DeathMatch. In the editor, I changed the gametype through the level properties and deleted the control points. I didn't rebuild as it kept crashing, I just saved the map. After saving, it starts to play ok, but then crashes with a General Protection Fault. I'm sure I'm missing a step or 2 somewhere, but not sure what to do. If anyone has a link of how to change gametypes, it would be most appreciated.

Thanks!
JackGriffin
Godlike
Posts: 3774
Joined: Fri Jan 14, 2011 1:53 pm
Personal rank: -Retired-

Re: Converting DOM to a DM Map

Post by JackGriffin »

You'll need to look through the actor list and remove the stuff that depends on DOM. The playerstarts may be team coded, stuff like that. If you get stuck send me the map and I'll help you by showing you what to look out for.
So long, and thanks for all the fish
Loose Cannon
Skilled
Posts: 165
Joined: Tue Jan 19, 2016 4:17 am

Re: Converting DOM to a DM Map

Post by Loose Cannon »

Hi Jack,

I'm not crazy about DOM gametypes. I mainly play offline and thought this might be fun as a DM game as I really liked the atmosphere even though it's a pretty big map. I played around with it but not really sure what I'm looking for in the actor list as far as it pertaining to the actual DOM level. This is a bit out of my league. I appreciate any insight you could give. There's absolutely no hurry with any help...I've just been tinkering with some things when I have time and not too busy with work. Thanks again!
Last edited by Loose Cannon on Tue Jan 22, 2019 12:47 pm, edited 1 time in total.
User avatar
FraGnBraG
Inhuman
Posts: 930
Joined: Sun Jun 13, 2010 5:13 pm
Personal rank: Good news everyone!
Location: Canada
Contact:

Re: Converting DOM to a DM Map

Post by FraGnBraG »

did you get permission from Deathox to edit his map and then post it here?

If not you better ask him or delete your attachment now :/

The map has no brushes so you can't build it anyways...
-=FraGnBraG Level Design=- ***UPDATED! even works on your phone!***
JackGriffin
Godlike
Posts: 3774
Joined: Fri Jan 14, 2011 1:53 pm
Personal rank: -Retired-

Re: Converting DOM to a DM Map

Post by JackGriffin »

Thanks for wasting my time OP. Added you to my "always ignore" list.
So long, and thanks for all the fish
User avatar
EvilGrins
Godlike
Posts: 9668
Joined: Thu Jun 30, 2011 8:12 pm
Personal rank: God of Fudge
Location: Palo Alto, CA
Contact:

Re: Converting DOM to a DM Map

Post by EvilGrins »

You're overthinking this, it's not that complicated.

Just rename it from DOM to DM.

I do it all the time, this used to be a DOM · https://unreal-games.livejournal.com/106946.html
http://unreal-games.livejournal.com/
Image
medor wrote:Replace Skaarj with EvilGrins :mrgreen:
Smilies · viewtopic.php?f=8&t=13758
User avatar
OjitroC
Godlike
Posts: 3605
Joined: Sat Sep 12, 2015 8:46 pm

Re: Converting DOM to a DM Map

Post by OjitroC »

EvilGrins wrote: Just rename it from DOM to DM.
That's what I do but a more satisfactory and comprehensive way is to use MrLoathsome's Multi Map Madness as this introduces new gametypes and so (presumably) alters the gametype code.
MMM readme wrote:Loathsomes Multi Map Madness - Pack1
Play DM, TDM and LMS on CTF and DOM maps.
Six new games will be in your gametypes list:
"DeathMatch - CTF Maps"
"Team DeathMatch - CTF Maps"
"Last Man Standing - CTF Maps"
"DeathMatch - DOM Maps"
"Team DeathMatch - DOM Maps"
"Last Man Standing - DOM Maps"
Loose Cannon
Skilled
Posts: 165
Joined: Tue Jan 19, 2016 4:17 am

Re: Converting DOM to a DM Map

Post by Loose Cannon »

Frag,
I didn't think about that....I deleted it. Like I said, it's just for my collection/ enjoyment offline. Not sharing with anyone. Thanks.
User avatar
Barbie
Godlike
Posts: 2792
Joined: Fri Sep 25, 2015 9:01 pm
Location: moved without proper hashing

Re: Converting DOM to a DM Map

Post by Barbie »

The ControlPoints (like other game specific actors) have a protection against usage in other game types:

Code: Select all

function PostBeginPlay() {
	if ( !Level.Game.IsA('Domination') )
		return;
	else
		...
or

Code: Select all

function Touch(Actor Other) {
	if ( !Other.bIsPawn || !Pawn(Other).bIsPlayer || !Level.Game.IsA('Domination') )
		return;
	...
So they don't cause trouble if the game is not 'Domination'.
"Multiple exclamation marks," he went on, shaking his head, "are a sure sign of a diseased mind." --Terry Pratchett
Red_Fist
Godlike
Posts: 2163
Joined: Sun Oct 05, 2008 3:31 am

Re: Converting DOM to a DM Map

Post by Red_Fist »

Which kind of makes sense, because it would have to have DOM actors to be a "DOM" map, but a DM has all the basic actors to run with.

As opposed to plying-making a DM then changing to play a DOM from renaming.
Binary Space Partitioning
Loose Cannon
Skilled
Posts: 165
Joined: Tue Jan 19, 2016 4:17 am

Re: Converting DOM to a DM Map

Post by Loose Cannon »

OjitroC wrote:
EvilGrins wrote: Just rename it from DOM to DM.
That's what I do but a more satisfactory and comprehensive way is to use MrLoathsome's Multi Map Madness as this introduces new gametypes and so (presumably) alters the gametype code.
MMM readme wrote:Loathsomes Multi Map Madness - Pack1
Play DM, TDM and LMS on CTF and DOM maps.
Six new games will be in your gametypes list:
"DeathMatch - CTF Maps"
"Team DeathMatch - CTF Maps"
"Last Man Standing - CTF Maps"
"DeathMatch - DOM Maps"
"Team DeathMatch - DOM Maps"
"Last Man Standing - DOM Maps"

Thanks OjitroC (and to MrLoathsome). That's a pretty slick gametype code. It worked!
User avatar
EvilGrins
Godlike
Posts: 9668
Joined: Thu Jun 30, 2011 8:12 pm
Personal rank: God of Fudge
Location: Palo Alto, CA
Contact:

Re: Converting DOM to a DM Map

Post by EvilGrins »

OjitroC wrote:That's what I do but a more satisfactory and comprehensive way is to use MrLoathsome's Multi Map Madness as this introduces new gametypes and so (presumably) alters the gametype code.
I always liked MonsterMadness' "Us Against Them" as it plays out on ALL maps no matter the gametype.
http://unreal-games.livejournal.com/
Image
medor wrote:Replace Skaarj with EvilGrins :mrgreen:
Smilies · viewtopic.php?f=8&t=13758
Post Reply