chat hud - edit size / transparency?

kdt

Veteran X
how can i do this? the sizes are shit so i press u and its ugly as fk and i cant read things well

and transparent hud would be nice
 
idk

groove has trans chat hud in his config

maybe u just use his

size i dunno i know there was 1 for 1.3 im sure lemon has it hid somewhere
 
Code:
editActionMap("playmap.sae");
bindCommand(keyboard0, make, "u", TO, "ToggleChatHudSize();");
//for the 1.4 binding magic: GameBinds::addBindCommand( "Resize ChatHUD", "ToggleChatHudSize();", "" );


$mj::ChatLines = 9;
function ToggleChatHudSize(){
	$mj::ChatLines = $mj::ChatLines < 30 ? 30 : 9; 		
	postAction(nameToId("SimGui::PlayDelegate"), IDACTION_CHAT_DISP_SIZE, $mj::ChatLines);	
}
 
idk

groove has trans chat hud in his config

maybe u just use his

size i dunno i know there was 1 for 1.3 im sure lemon has it hid somewhere

i used Greyhounds TransChat plugin (which he was cool enough to link above)

for chatresizer i use this, forget who made it, probably similar to emjays but has settings for whatever sizes you want to switch between

Code:
// chathud "U" over-ride

$ChatHudEditorPref::Size[1] = 5;
$ChatHudEditorPref::Size[2] = 25;
$ChatHudEditorPref::Size[3] = 50;
$ChatHudEditorPref::counter = 1;


function ChatHudEditor::changeSize()
{
	$ChatHudEditorPref::counter++;
	if ($ChatHudEditorPref::counter > 3) $ChatHudEditorPref::counter = 1;
	EditActionMap("actionMap.sae");
	bindAction(keyboard0, make, "u", TO, IDACTION_CHAT_DISP_SIZE, $ChatHudEditorPref::Size[$ChatHudEditorPref::counter]);
}

bindAction(keyboard0, make, "u", TO, IDACTION_CHAT_DISP_SIZE, $ChatHudEditorPref::Size[$ChatHudEditorPref::counter]);
bindCommand(keyboard0, break,  "u", TO, "ChatHudEditor::changeSize();");
 
that was summer of white widow weed that blow my mind fuk it was amazing and steve much more experience pot smoker than over talkative nooby smoke alex that talk tribe metagame while sitting in park

i even get groove 2 roll joint i think LOL

very c00l memory

gg
 
that's it, if you want to edit the actual width of the chathud use tree() or edit play.gui.cs.


get nofix' pluginloader -> google happymod ~
 
Back
Top