Scripts 1.4&1.1

S_hift

Veteran X
Veteran XX
so yeah, thought I'd post this code a buddy of mine sent me. It removes bottom center and top prints.

I figured it would be helpful for anyone editing videos and what not :shrug:

This one you can put in your autoexec.cs or into console if you just wanna disable everything at once.
Code:
function remoteCP(%manager, %msg, %timeout) { }
function remoteBP(%manager, %msg, %timeout) { }
function remoteTP(%manager, %msg, %timeout) { }

Code:
//Remove cp bp tp by: Perrinoia
//////////////////////////
//	config/config.cs	//
//////////////////////////
bindCommand(keyboard, make, control, n, to, "exec(\"MuteBP.acs.cs\");");
bindCommand(keyboard, make, alt, n, to, "exec(\"UnmuteBP.acs.cs\");");

//////////////////////////////
//	config/Modules/MuteBP.acs.cs	//
//////////////////////////////
function muteBP(%manager, %msg, %timeout) before remoteBP
{
	return %ret = false;
}

function muteCP(%manager, %msg, %timeout) before remoteCP
{
	return %ret = false;
}

function muteTP(%manager, %msg, %timeout) before remoteTP
{
	return %ret = false;
}

//////////////////////////////
//	config/UnmuteBP.acs.cs	//
//////////////////////////////
function muteBP(%manager, %msg, %timeout) before remoteBP
{
}

function muteCP(%manager, %msg, %timeout) before remoteCP
{
}

function muteTP(%manager, %msg, %timeout) before remoteTP
{
}

I've only used the first code to block all. I haven't tested the one with the toggle.

they're supposed to work for both 1.4 and 1.1
 
Last edited:
so yea, it was a little know fact that along with the joystick update Tribes version 1.1 included function attachments. For some reason they didn't make it into 1.11 but it's nice to see some support for older versions.
 
is there a script that'll catch remoteBP/CP/TP and convert them into prettier ScriptGL popups?

i vaguely remember something like that for hudbot, does anyone still have it?
 
Back
Top