Stand Alone fast favs?

TheRealMysterio
06-16-2004, 06:15 PM
I dont care for useful ingame gui's or anything excessive.... Just want simple fast favs that allows you to select the favs you want before you enter station.

Anyone have these or a link to one? (preferably one w/ lots of favorites ((10+))

thanks

-r3y

Amadeus
06-17-2004, 03:47 AM
Only thing I know of that is standalone is 20Favs. Not really an improvement though, you still have to select your loadout while in the station.

Shinigami
06-17-2004, 03:50 AM
It would require events to auto buy.

TheRealMysterio
06-17-2004, 04:37 PM
I got Events ;) maybe not THAT stand alone. I geuss im just trying to avoid the whole presto/newopts thing :x

-r3y

Amadeus
06-17-2004, 04:45 PM
If you have presto then get SuperFavs. Easy to set up, compatible with ANY mod.

Shinigami
06-17-2004, 06:37 PM
Which events though? :P

At0m|c
06-17-2004, 08:13 PM
You could try out andrew's mini config and just strip it down so you just have the favs. I'm sure it has some other things in there that you'd find useful. :)
http://www.team5150.com/~andrew/project.tribes/mini/

Jager
06-17-2004, 09:54 PM
Let me see if I have an example.

Jager
06-17-2004, 10:07 PM
// Cheap Faves by Jager.
// Rewrite: 4/5/04
//
// This is a really simple and dirty fast favorites. Works with any mod. there
// is no fancy shit like linking mods or anything.
//
// NOTE: It won't tell you what favorite you have selected.
//
// SUPER NOTE: This probably will break your config if you have any other
// scripts that hijack onClientMessage()
//
//
editActionMap("playMap.sae");

// Turn off that darn Inventory Screen.
$pref::noEnterInvStation = "true";

// Default Loadout.
$curFavorites = 1;

// Keybinds
// Make as many as you want.
//
// NOTE: To set your favorites, simply press the key you want, go to the inv,
// get your loadout, and press 'Mark Favorites'
// Don't worry what the inventory says your selected favorite is, just do it.

bindCommand(keyboard0, make, "numpad0", TO, "jFav(1);");
bindCommand(keyboard0, make, "numpad1", TO, "jFav(2);");
bindCommand(keyboard0, make, "numpad2", TO, "jFav(3);");
bindCommand(keyboard0, make, "numpad3", TO, "jFav(4);");
bindCommand(keyboard0, make, "numpad4", TO, "jFav(5);");
bindCommand(keyboard0, make, "numpad5", TO, "jFav(6);");
bindCommand(keyboard0, make, "numpad6", TO, "jFav(7);");
bindCommand(keyboard0, make, "numpad7", TO, "jFav(8);");
bindCommand(keyboard0, make, "numpad8", TO, "jFav(9);");
bindCommand(keyboard0, make, "numpad9", TO, "jFav(10);");


// The Beast of the script!!! (Funny how the config section is bigger than this.
function jFav(%num) {
if(%num != "") { $curFavorites = %num; }
CmdInventoryGui::buyFavor ites($curFavorites);
}

function onClientMessage(%client, %msg) {
if(%client == 0) {
if(%msg == "Station Access On") { jFav(); }
}
return 1;
}


Well, it's not quite just an example, but it's stand alone alright, but like the warning says, it will probably break your config if you use any other script that uses onClientMessage().

In other words, read this.. THIS WILL NOT WORK WITH Presto/z0dd/Viking/Stripped.

TheRealMysterio
06-18-2004, 04:31 AM
where does you set your favs in that jag? Can i Just have that last function use events to tell it that im in the station? event::attach(onenterstat ion, blah blah); or what ever it is?

-r3y

At0m|c
06-18-2004, 10:06 AM
You set them in game with the inventory menu.

MassMedia
06-18-2004, 01:50 PM
you could always overwrite CLIENTMSG function and bunbdle in it favs to avoid events.... but thats like killing jews by destroying the planet.

|Blitzkrieg|
06-18-2004, 02:35 PM
Not quite "Stand Alone" but z0dd_hud has fast favorites built-in. You can always deactivate all the extra stuff contained and just use the favorites.

Jager
06-18-2004, 02:56 PM
where does you set your favs in that jag? Can i Just have that last function use events to tell it that im in the station? event::attach(onenterstat ion, blah blah); or what ever it is?

-r3y

You set them in game with the inventory menu.


Don't worry what the inventory menu says your selected favorite is, it lies. Just press the keybind you want, get your loadout while in the inventory screen, then hit mark favorites.

Deceptikon
06-18-2004, 04:24 PM
you could always overwrite CLIENTMSG function and bunbdle in it favs to avoid events.... but thats like killing jews by destroying the planet.