I'd suggest just using Declare players
Simba Code:
Procedure DeclarePlayers;
begin
HowManyPlayers := 1; // Don't touch this
NumberOfPlayers(HowManyPlayers);// Don't touch this
CurrentPlayer := 0; // Don't touch this
Players[0].Name := '';// Username
Players[0].Pass := ''; // Password
Players[0].Active := True; // Don't touch this
Players[0].Pin := ''; // Bank Pin, Leave blank if you don't have one
Wait(randomrange(1500,5000));
end;
And then in your main loop have
Simba Code:
begin
MouseSpeed := RandomRange(14,16);
smart_server := 91;
smart_members := false;
smart_signed := true;
smart_superDetail := false;
ClearDebug;
SetupSRL;
DeclarePlayers;
LoginPlayer;
Otherwise very nice script, I like the use of SPS walking and if then else's, I'll test this soon and post a proggy