Scripted Logins With Multiple Accounts

Calatan

New member
Most often when I attempt to login using some scripts that I use with several accounts, I get an assortment of errors, most commonly "This account is not yet out of ronin" (which of course it is).

Im a relatively inexperienced coder, and basically ive just been using this format (which used to work flawlessly) to login with multiple accounts consecutively..

Id just use this cmd

cli_execute("login " + PlayerName);

where as PlayerName is a string entered into the main for whatever function you wish the player to do..so youll have something like...


void ascend(string PlayerName)
{
cli_execute("login " + PlayerName);
*rest of function*
}

void main()
{
ascend("PlayerName");
shore("PlayerName");
farm("PlayerName");
cli_execute("exit");
}
 
Top