CTF to DOM.

Do you search a certain mutator, mod, skin, map, everything else?
Post Reply
UTX
Skilled
Posts: 214
Joined: Fri Aug 28, 2015 3:39 am

CTF to DOM.

Post by UTX »

I'm looking for the game type, or mutator, that turned CTF into DOM. I wanted to check it out and see if I can mix it up with Double Domination, that way I will have plenty of maps to play.
User avatar
PrinceOfFunky
Godlike
Posts: 1200
Joined: Mon Aug 31, 2015 10:31 pm

Re: CTF to DOM.

Post by PrinceOfFunky »

UTX wrote:I'm looking for the game type, or mutator, that turned CTF into DOM. I wanted to check it out and see if I can mix it up with Double Domination, that way I will have plenty of maps to play.
Well, I'm making one, but now it's 5:48am and it's better if I go sleep XD

Code of the mutator(if someone is interested):

Code: Select all

function PreBeginPlay()
{
	local FlagBase Flag;
	local ControlPoint CP;
	local int index;
	
	local CTFGame CTF;
	
	foreach AllActors(class'FlagBase', Flag)
	{
		ReplaceWith(flag, "Botpack.ControlPoint");
	}
	
	foreach AllActors(class'ControlPoint', CP)
	{
		CP.PointName = String(index++);
	}
	
	foreach AllActors(class'CTFGame', CTF)
	{
		ReplaceWith(CTF, "Botpack.Domination");
	}
	ReplaceWith(Level.Game, "Botpack.Domination");
}
I know it doesn't work properly, but I'm sleepy... :x
"Your stuff is known to be buggy and unfinished/not properly tested"
MrLoathsome
Inhuman
Posts: 958
Joined: Wed Mar 31, 2010 9:02 pm
Personal rank: I am quite rank.
Location: MrLoathsome fell out of the world!

Re: CTF to DOM.

Post by MrLoathsome »

Try this out: http://www.ecoop.tk/load/ctf2dom/1-1-0-53

This variation is even better. I have it on my DOM server now.
(With Zombies....): http://www.ecoop.tk/load/megadomination ... m/1-1-0-54
blarg
User avatar
PrinceOfFunky
Godlike
Posts: 1200
Joined: Mon Aug 31, 2015 10:31 pm

Re: CTF to DOM.

Post by PrinceOfFunky »

MrLoathsome wrote:Try this out: http://www.ecoop.tk/load/ctf2dom/1-1-0-53

This variation is even better. I have it on my DOM server now.
(With Zombies....): http://www.ecoop.tk/load/megadomination ... m/1-1-0-54
Oh :sad2: I didn't know it already existed :/
"Your stuff is known to be buggy and unfinished/not properly tested"
User avatar
Dr.Flay
Godlike
Posts: 3347
Joined: Thu Aug 04, 2011 9:26 pm
Personal rank: Chaos Evangelist
Location: Kernow, UK
Contact:

Re: CTF to DOM.

Post by Dr.Flay »

Almost everything you can think of already exists for UT and Unreal, although finding stuff can be an issue with old hosts dying.
UTX
Skilled
Posts: 214
Joined: Fri Aug 28, 2015 3:39 am

Re: CTF to DOM.

Post by UTX »

Dr.Flay wrote:Almost everything you can think of already exists for UT and Unreal, although finding stuff can be an issue with old hosts dying.
Good thing for us developers it is still at "almost".

Thank you Mr. Loathsome.
Post Reply