Well I tried to make a script so when I connect I log in. It works fine for the most part but when I join the game. The wrong password gui pops up.
package Login
{
function GameConnection::onConnection(%this)
{
commandToServer('login',"Jimmg" ,"MyPassword");
Parent::onConnection(%this);
}
};
function Login()
{
activatePackage(Login);
}