[T2-Request] autologin?

cruncha-

Contributor
Veteran XX
when i load up t2. i want it to automaticly log me in and go straight to the server list. or if there is one already like this. please link me to it.
 
sure..

put this in your T2 shortcut... -online -login user pass

then place this in a .cs in your autoexec dir:

PHP:
$pref::Shell::LaunchGui = "Game";

package launchJoin {
    function GameGui::onWake(%this) {
        parent::onWake(%this);
        GM_TabView.setSelected(1);
    }
};
activatePackage(launchJoin);

I didn't test this because I don't have T2 installed, but it looks ok..
 
Back
Top