hey man! I actually gave grok a try myself (i feel dirty now
Team Spawn Mutator: code if interested:
Spoiler
Code: Select all
// DomTeamSpawnMutator.uc
// A mutator that forces bSpawnInTeamArea to true for the Domination gametype in Unreal Tournament '99 (v469d).
class DomTeamSpawnMutator extends Mutator;
function PostBeginPlay()
{
local Domination Game;
// Check if the current game is Domination
Game = Domination(Level.Game);
if (Game != None)
{
// Set bSpawnInTeamArea to true
Game.bSpawnInTeamArea = true;
Log("DomTeamSpawnMutator: Set bSpawnInTeamArea to true for Domination gametype.");
}
else
{
Log("DomTeamSpawnMutator: Current gametype is not Domination, no changes made.");
}
Super.PostBeginPlay();
}
defaultproperties
{
}

