(UT2004) Looking for Meowcat's "No Team Beacon mutator"

Discussions about everything else
Post Reply
User avatar
Acoma
Average
Posts: 73
Joined: Sun Jul 07, 2013 12:52 am
Location: Las Vegas☆

(UT2004) Looking for Meowcat's "No Team Beacon mutator"

Post by Acoma »

Meowcat on the Epic Games forum posted a mutator in 2013 that removed friendly team beacons via mutator in his post here:
https://forums.epicgames.com/unreal-tou ... ost3166870
was wondering if anyone still has it since i cannot find it on gamefront or any other archive
User avatar
OjitroC
Godlike
Posts: 3613
Joined: Sat Sep 12, 2015 8:46 pm

Re: (UT2004) Looking for Meowcat's "No Team Beacon mutator"

Post by OjitroC »

On the same forum there is this

Code: Select all

Hi Emmet Otter, I thought somebody else may have already made a mutator to turn off the beacons, but I don't know where it might be. Here is some UNTESTED mutator code that I think would accomplish what you want if you were to compile it.

Code:

//=============================================================================
// Turn off team beacons on xpawns (UT2k4 pawns!) by setting their bNoTeamBeacon variable to 'true'
//=============================================================================

class MutNoTeamBeacon extends Mutator;

function ModifyPlayer(Pawn Other){
    local xPawn X;

    X=xPawn(Other);
    if(x!=none ) x.bNoTeamBeacon = true;

    if ( NextMutator != None )
        NextMutator.ModifyPlayer(Other);
}

defaultproperties
{
     GroupName="NoTeamBeacon"
     FriendlyName="NoTeamBeacon"
     Description="Turns off all team beacons -bMeowcat"
}

You could try compiling it and see if that works.
User avatar
Acoma
Average
Posts: 73
Joined: Sun Jul 07, 2013 12:52 am
Location: Las Vegas☆

Re: (UT2004) Looking for Meowcat's "No Team Beacon mutator"

Post by Acoma »

Oh cool I didn't see that
Yep it works just like described and honestly probably a good thing that it still displays friendly vehicle tags
Attachments
MutNoTeamBeacon.zip
(1.06 KiB) Downloaded 19 times
User avatar
OjitroC
Godlike
Posts: 3613
Joined: Sat Sep 12, 2015 8:46 pm

Re: (UT2004) Looking for Meowcat's "No Team Beacon mutator"

Post by OjitroC »

Pleased to hear that worked out OK. Pedantically, since this mut is for UT2004 only it should be in Misc Off-Topic rather than Download Search.
User avatar
UnrealGGecko
Godlike
Posts: 2904
Joined: Wed Feb 01, 2012 11:26 am
Personal rank: GEx the Gecko
Location: Kaunas, Lithuania
Contact:

Re: (UT2004) Looking for Meowcat's "No Team Beacon mutator"

Post by UnrealGGecko »

OjitroC wrote: Mon Nov 16, 2020 11:11 pm Pleased to hear that worked out OK. Pedantically, since this mut is for UT2004 only it should be in Misc Off-Topic rather than Download Search.
Now it is :)
Post Reply