scripts?

ok, might as well ask this here. what are recommended scripts, and voicepacks and such? i realize i am a newbie to T2, but I am extremely active in the T1 community. :P
thanks for the help, and i look forward to getting to know you guys as well.

Comments

  • SetPerfCounterEnable(0);
    

    copy and save that to a text file then rename autoexec.cs, drop it into the base/scripts/autoexec folder

    it helps in reducing stuttering in the game, some maye find the game runs smoother with the 0 set to 1
  • // #autoload
    package SoDMuteFags {
        function clientCmdChatMessage(%sender, %voice, %pitch, %msgString, %a1, %a2, %a3, %a4, %a5, %a6, %a7, %a8, %a9, %a10)
        {
            %newvoice = detag(%voice);
            if ( %newvoice $= "" ) {
                // Player is using null-voice exploit, show the message but don't play the sound
                %message = detag( %msgString );
                %wavStart = strstr( %message, "~w" );
                if ( %wavStart != -1 ) {
                    %msgString = getSubStr(%message, 0, %wavStart);
                }
            }
            parent::clientCmdChatMessage(%sender, %voice, %pitch, %msgString, %a1, %a2, %a3, %a4, %a5, %a6, %a7, %a8, %a9, %a10);
        }
    };
    activatePackage(SoDMuteFags);
    

    save as a text file, rename it to mutefags.cs, and drop into the base/scripts/autoexec folder


    this script helps maintain sanity
  • [code]// #autoload
    // #name = cleanDSO
    // #version = 1.0
    // #date = December 21, 2001
    // #author = Paul Tousignant
    // #warrior = UberGuy (FT)
    // #email = uberguy@skyreach.cas.nwu.edu
    // #web = http://scripts.tribalwar.com/uberguy
    // #description = Remove all your *.dso files every time you exit T2.
    // #status = beta

    package noDso {

    function quit() {

    %cnt = 0;
    %tmpObj = new ScriptObject() {};
    for(%file = findFirstFile("*.dso"); %file !$= ""; %file = findNextFile("*.dso")) {
    %tmpObj.file[%cnt++] = %file;
    }
    for (%i=0; %i
  • you should also dl support.vl2 and drop it into your gamedata/base folder (all vl2 files go into the gamedata/base folder only) as many scripts need the functionality that support.vl2 brings

    http://spinfusor.ch/tribes2/scripts/Supports/zSupport-Support.vl2
  • ok, thanks. i will look into these. :D
Sign In or Register to comment.