NexGen hud messages
-
- Novice
- Posts: 17
- Joined: Tue May 14, 2013 3:50 am
- Personal rank: WhartHogProfessional
NexGen hud messages
Hey guys you know how get out this messages of kills and etc???
You do not have the required permissions to view the files attached to this post.
-
- Godlike
- Posts: 5498
- Joined: Wed Feb 27, 2008 6:24 pm
- Personal rank: Work In Progress
- Location: Liandri
Re: NexGen hud messages
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:
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.
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;
}
Moved to Servers btw, the Suggestions, Criticism and Questions section is aimed to be forum-wise and not UT-wise.
-
- Experienced
- Posts: 124
- Joined: Mon Jan 30, 2012 9:46 am
Re: NexGen hud messages
Type in !o to open the nexgen controller, click settings, uncheck enable nexgen hud
-
- Godlike
- Posts: 1089
- Joined: Sun Sep 07, 2008 10:59 am
- Personal rank: ...
Re: NexGen hud messages
not quite the same brorsbloom44 wrote:Type in !o to open the nexgen controller, click settings, uncheck enable nexgen hud
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.