Movie Making Config

phanakapan

Private Tester
I am very close to being done with my cleaned up movie making config. With regard to the huds, I have been able to get rid of basically everything with a few exceptions.

-When a server still has fewer than 6 people the message about waiting for more players is still visible in yellow just below the energy and jet huds. How do I get rid of this?
-the small white numbers related to ammo still show up where the weapon icons were before i made those images blank on the right side of my screen and in the bottom left where the nades are shown. How do i get rid of these?
-i would like to get rid of the invincibility text after you respawn. I changed my mind again. this text often erases flag events making it less clear what's happening in the game.
-the game ending in x amount of time messages. same as above.
-i would like to get rid of the arrows that show other players around the edges of the screen. This isnt a priority.
-the chat hud (i tried searching and couldnt find anything specific to the chat hud). Ideally this would be a key i could toggle, as sometimes its nice to be able to see chat and type stuff to people. for now I just turned off my chat, so I will be a lot more silent in game until this script is created.

basically i want the bare minimum of information to know whats happening in the game, but have everything be very clean.

Otherwise, the only script I would like is one that quickly toggles third person when I grab the flag (and possibly when I throw the flag, I would like to see how that behaves in game) and then retoggles first person after a short amount of time, maybe a second or less. Any idea how to do this? Look at http://www.youtube.com/watch?feature=player_detailpage&v=m6Rvh31SgZo#t=68s for an idea of what I mean. Basically, I want to start playing in first person, but from a video perspective it is sometimes difficult to see flag events without showing the flag on the body.

Thanks in advance for the help and thanks especially to NightHawk043 for the Killpop script!
 
-When a server still has fewer than 6 people the message about waiting for more players is still visible in yellow just below the energy and jet huds. How do I get rid of this?
this has a quickfix, just type in the console
clientCmdCenterPrint("", -1);

The rest will require a script.
Personally I'd put all of them in one script and put a hotkey toggle like rockey's hud-off toggle.
If i get the chance I'll look into it, but there's a couple of things I'm not sure on how best to do.
 
$HudElement::BottomMessageText = %index;

$HudElement::CenterMessageText = %index; is the not enough players, and I believe also the time remaining/game starts in #

$HudElement::TopMessageText = %index; is the flag messages, you'll want to leave that there.
 

phanakapan

Private Tester
I want to change
Code:
KillPop_Print("\c6"@%a1@"MidAir at: "@%a3@"m", 3000, 1 );
which shows up like: RocketMidAir at: 200m to emulate the exact same language and formatting as the chat box: Rocket midair #3 - Distance: 200m.

To change the text:
Code:
KillPop_Print("\c6"@%a1@" midair #"@%a2@"- Distance: "@%a3@"m", 3000, 1 );

edit: figured it out!
 
Top