I have these scripts/mods. What scripts am I missing that i ne in your opinion?

2»

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);
    
  • awesome, thanks a lot Red Shifter
  • Heh, nice to see some of my scripts are still being used after all these years :D
  • uberchat will mute everybody with a click or 2
  • mutefags.cs by ilys is a must have
  • 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
Sign In or Register to comment.