CTF to DOM.
-
- Skilled
- Posts: 214
- Joined: Fri Aug 28, 2015 3:39 am
CTF to DOM.
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.
-
- Godlike
- Posts: 1192
- Joined: Mon Aug 31, 2015 10:31 pm
Re: CTF to DOM.
Well, I'm making one, but now it's 5:48am and it's better if I go sleep XDUTX 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.
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");
}

"Your stuff is known to be buggy and unfinished/not properly tested"
-
- 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.
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
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
-
- Godlike
- Posts: 1192
- Joined: Mon Aug 31, 2015 10:31 pm
Re: CTF to DOM.
OhMrLoathsome 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

"Your stuff is known to be buggy and unfinished/not properly tested"
-
- Godlike
- Posts: 3332
- Joined: Thu Aug 04, 2011 9:26 pm
- Personal rank: Chaos Evangelist
- Location: Kernow, UK
Re: CTF to DOM.
Almost everything you can think of already exists for UT and Unreal, although finding stuff can be an issue with old hosts dying.

ChaosUT https://chaoticdreams.org
Your Unreal resources: https://yourunreal.wordpress.com
The UT99/UnReal Directory: https://forumdirectory.freeforums.org
Find me on Steam and GoG
-
- Skilled
- Posts: 214
- Joined: Fri Aug 28, 2015 3:39 am
Re: CTF to DOM.
Good thing for us developers it is still at "almost".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.
Thank you Mr. Loathsome.