Scripts for Tribes 1.40

attachment.php

I don't think you posted a link, it's in the 1.40 skins thread where I found this pic.
I would like that bottom left hud for 1.40.
 
that's the "stuff hud" and I think annobis has it on his site


uh the green lines were removed in one of the gui.cs files somewhere
 
find the chathud in play.gui.cs i think and set commandermode=true or something similar to that
green lines will be gone for the medium and large chathud but not the small 3 line one
 
how do i access the different fonts when using FearGuiFormattedText ?
do the <f#> codes include them all (i only know a few)? I'm looking for the exact green team chat font in use (if_g_10b) and the red chat text (sf_red_10b)
 
bump

script for filtering white (type 0) server messages

useful for people with a separate kill hud so kill messages don't show in chat but important messages still get through

Code:
// filtering white messages for 1.40

$nomute=-1;

// add the messages you want to get through below
$WhiteFilter::Allow[$nomute++] = "Match";
$WhiteFilter::Allow[$nomute++] = "mission";
$WhiteFilter::Allow[$nomute++] = "flag";
$WhiteFilter::Allow[$nomute++] = "Station";
$WhiteFilter::Allow[$nomute++] = "vote";
$WhiteFilter::Allow[$nomute++] = "mid-aired";

//$WhiteFilter::Allow[$nomute++] = "deployed";
//$WhiteFilter::Allow[$nomute++] = "no ammo";
//$WhiteFilter::Allow[$nomute++] = "Resupply";
//$WhiteFilter::Allow[$nomute++] = "Repair";
//$WhiteFilter::Allow[$nomute++] = $PCFG::Name;

function filterwhites( %cl, %msg, %type )
	after onClientMessage {
  
	if(%type != 0)
		return;
    
	%ret = false;
	
	for(%i=0;%i<=$nomute;%i++) {
		if( String::FindSubStr(%msg, $WhiteFilter::Allow[%i]) != -1 ) {
			%ret = true;
			break;
		}
	}
	return;
}
 
Last edited:
Here's a simple request if anyone is willing to do it:

I use F1 to waypoint friendly carrier, and I'd like it to also say 'Target Acquired!' when I press it.. I'm sure it's easy to do, but I know nothing about tribes code and wouldn't even know where to begin.

*edit* I just added in the chat line after the bind in config.cs for now, but it would be nice if I could press F1 when nobody has the flag and it NOT say target acquired =)
 
Last edited:
Does anyone have some nice and small killpop hud? I think limon is mad at me he wont reply my pms. Also, my ammohud doesnt show up. I tried everything, didnt work.

thanks.
 
your ammo hud shows up anubis its in the bottom right of your screenshots for some reason

my killpop hud is the one that came with 1.4 with one line changed
 
you're hopeless

It's difficult to help those who can't help themselves.


My ammo hud includes base weapons only by the way. You'll have to add the Anni weapons if you want it to work for them too.


Here is the secret behind my amazing killpop "hud." See if you can figure it out.


1.40 code.
Code:
	remoteBP( 2048, "<JC><F2>You <F1>killed <F2>" ~ String::escapeFormatting( Client::getName( %victim ) ) ~ "\n<F1>Weapon: <F2>" ~ %damage, 3 );


My super duper secret code.
Code:
	remoteBP( 2048, "<JC><F1>Victim: <F2>" ~ String::escapeFormatting( Client::getName( %victim ) ) ~ " <F1>Weapon: <F2>" ~ %damage, 4 );
 
Last edited:
lol thank you. But that screen shot is from base... :/ and I dont know how to add anni weapons.. Didnt stripped pack have an ammohud that worked with every mod?..
 
Back
Top