Scripts for Tribes 1.40

attachment.php

MayKadoody owns you

(p.s. who were you? Lamont something?)
 
i like Quimica.


anyway:


//
//Auto Screen Shot when MID AIR
//

function onExit()
{
deleteObject($midAir);

if(isObject(playGui))
storeObject(playGui, "config\\play.gui");

saveActionMap("config\\config.cs", "actionMap.sae", "playMap.sae", "pdaMap.sae");

//update the video mode - since it can be changed with alt-enter
$pref::VideoFullScreen = isFullScreenMode(MainWindow);

checkMasterTranslation();
echo("exporting pref::* to prefs.cs");
export("pref::*", "config\\ClientPrefs.cs", False);
export("Server::*", "config\\ServerPrefs.cs", False);
export("pref::lastMission", "config\\ServerPrefs.cs", True);
BanList::export("config\\banlist.cs");
}

function remoteBP(%manager, %msg, %timeout)
{
if(%manager == 2048)
{
if(string::findSubStr(%msg,"M i d") != "-1") {
if(!isObject($midair))
{
$midair = newObject("midairhit", FearGuiFormattedText, 100, 265, 64, 225);
AddToSet("PlayGUI",$midair);
Control::setValue("midAirHit","<f1>MID AIR HIT!!");
Control::setVisible("midAirHit",true);
}
else
{
Control::setVisible("midAirHit",true);
}
schedule("screenShot(mainWindow);", 0.25);
schedule("control::setVisible(\"midAirHit\",false);", 1.0);
}
$centerPrintId++;
if(%timeout)
schedule("clearCenterPrint(" @ $centerPrintId @ ");", %timeout);
Client::centerPrint(%msg, 1);
}
echo(%msg);
}

sshot0078.jpg
 
Last edited:
where can i find a list of events

You can find them by looking through all the files. :)

Look for the script file that you think might trigger the event, or look for a script that you think is triggered by the event you're looking for. Or, a slower way is to use a program like PRGrep to search for the string "Event::Trigger"
 
What's going on? 1.40? Tribes with better graphics? Should I be interested? Do people actually still play the game?
 
Back
Top