NexGen hud messages

Discussions about Servers
Post Reply
User avatar
[wH]Demetrios
Novice
Posts: 17
Joined: Tue May 14, 2013 3:50 am
Personal rank: WhartHogProfessional

NexGen hud messages

Post by [wH]Demetrios »

Hey guys you know how get out this messages of kills and etc???
Attachments
error.png
Image
User avatar
Feralidragon
Godlike
Posts: 5493
Joined: Wed Feb 27, 2008 6:24 pm
Personal rank: Work In Progress
Location: Liandri

Re: NexGen hud messages

Post by Feralidragon »

Coding wise question or do you mean NexGen server settings?

Server-wise I don't know, but coding-wise: I never looked into NexGen, but I assume it uses the Mutator class mutated messages events, such as:

Code: Select all

function bool MutatorTeamMessage( Actor Sender, Pawn Receiver, PlayerReplicationInfo PRI, coerce string S, name Type, optional bool bBeep )
{
    if ( NextMessageMutator != None )
        return NextMessageMutator.MutatorTeamMessage( Sender, Receiver, PRI, S, Type, bBeep );
    else
        return true;
}

function bool MutatorBroadcastMessage( Actor Sender, Pawn Receiver, out coerce string Msg, optional bool bBeep, out optional name Type )
{
    if ( NextMessageMutator != None )
        return NextMessageMutator.MutatorBroadcastMessage( Sender, Receiver, Msg, bBeep, Type );
    else
        return true;
}

function bool MutatorBroadcastLocalizedMessage( Actor Sender, Pawn Receiver, out class<LocalMessage> Message, out optional int Switch, out optional PlayerReplicationInfo RelatedPRI_1, out optional PlayerReplicationInfo RelatedPRI_2, out optional Object OptionalObject )
{
    if ( NextMessageMutator != None )
        return NextMessageMutator.MutatorBroadcastLocalizedMessage( Sender, Receiver, Message, Switch, RelatedPRI_1, RelatedPRI_2, OptionalObject );
    else
        return true;
}
In case NexGen doesn't offer such an option, perhaps someone can build a mutator based on the above to cancel them out.

Moved to Servers btw, the Suggestions, Criticism and Questions section is aimed to be forum-wise and not UT-wise.
rsbloom44
Experienced
Posts: 124
Joined: Mon Jan 30, 2012 9:46 am

Re: NexGen hud messages

Post by rsbloom44 »

Type in !o to open the nexgen controller, click settings, uncheck enable nexgen hud
User avatar
Wises
Godlike
Posts: 1089
Joined: Sun Sep 07, 2008 10:59 am
Personal rank: ...

Re: NexGen hud messages

Post by Wises »

rsbloom44 wrote:Type in !o to open the nexgen controller, click settings, uncheck enable nexgen hud
not quite the same bro :)

That will disable the entire HUD including the top part and ping/timer boxes.

this remove the chat messages request has been requested several times before. Just noone out there willing to spend 5 mins to disable it.
Post Reply