This is one of the things that makes Tribes so freakin' bitchin'. Scripts.
Being able to fine tune and adjust your computer interface armor suit system loadout while constantly battling in endless rounds of organized mayhemic chaos on the ground, in the air and all your base belong to us , with a little capture the flag on the side. VFS
Comments
// #autoload // #name = GlobalMute // #author = Tim Tejsner // #warrior = Da_Timsta // #email = i removed this // #web = http://da-timsta.soo.dk/ // #describtion = Mutes global chat on a keypress $GlobalMute = false; function GlobalToggle(%val) { if(%val) clientCmdBottomPrint("global text" SPC (($GlobalMute = !$GlobalMute) ? "muted" : "unmuted"), 2, 1); } package timMute { function clientCmdChatMessage(%sender, %voice, %pitch, %msgString, %a1, %a2, %a3, %a4, %a5, %a6, %a7, %a8, %a9, %a10) { if($GlobalMute) return mute; parent::clientCmdChatMessage(%sender, %voice, %pitch, %msgString, %a1, %a2, %a3, %a4, %a5, %a6, %a7, %a8, %a9, %a10); } // setting toggle key function OptionsDlg::onWake(%this) { if(!$EncryptKeys) { $RemapName[$RemapCount]="Global Mute"; $RemapCmd[$RemapCount]="GlobalToggle"; $RemapCount++; $EncryptKeys = true; } parent::onWake(%this); } }; activatePackage(timMute);Scripts.
Being able to fine tune and adjust your computer interface armor suit system loadout while constantly battling in endless rounds of organized mayhemic chaos on the ground, in the air and all your base belong to us , with a little capture the flag on the side. VFS