My main problem is, how to alternate a script between 2 players, whilst using the 6 hour fix too. Here's an example of what I'm trying to accomplish.
Simba Code:
begin
SRL_SixHourFix := True;
Smart_FixSpeed := True;
SetupSRL;
ObjDTM_Setup;
SRL_Procs[SRL_OnFindRandom] := @Little_Logout;//simple proc to logout b/c we shouldn't get random events
script_setup;
repeat
repeat
if not LoggedIn then
smooth_login;
if rs_update then
break_until_pass; //nifty on weekly updates
dowork;
dowork1;
Wait(20+random(10));
doprog; //6hr, 15min
until(gettimerunning>=22500000) or (not loggedin);
NextPlayer(True); {*???}
until((count = need_number));
end.
So, if I start the script with player 0, then would nextplayer(true) keep switching from 0 to 1, then 1 to 0, etc.? Or would I need to somehow use SwitchToPlayer, or something more modified of SwitchToPlayer, or something else? Any advice/input/feedback very welcomed!