View Full Version : Smart Manager help!!!
Footy
07-17-2012, 12:46 AM
So I made a script(Generic alcher in my sig), and I was wondering if It would work in SmartManager. Is SmartManager broken right now? Also, my script uses a custom log in, since I assume the SRL one is still broken
Thanks guys
Simba 0.99 and SMART v7.2 have removed the necessity of SMARTmanager and other external programs.
SRL_SixHourFix := True; will restart your client if you recieve the 6hr error
Footy
07-17-2012, 01:42 AM
Oooh, thats interesting. I guess I just put that in my main loop after SetupSRL? Thanks!
Doesn't necessarily need to be in your mainloop.. In all of my scripts I have a procedure called SetupLogin where I put all of the general setting up business like so..
procedure SetupLogin;
begin
ClearDebug;
{$IFDEF SMART}
{$IFDEF SIMBAMAJOR980}
Smart_Server := 10;
Smart_Members := True;
Smart_Signed := True;
Smart_SuperDetail := False;
{$ELSE}
SRL_SixHourFix := True;
Smart_FixSpeed := True;
{$ENDIF}
{$ENDIF}
SetupSRL;
DeclarePlayers;
ActivateClient;
if not LoggedIn then
LoginPlayer;
Wait(RandomRange(2000,3000));
SetAngle(SRL_ANGLE_HIGH);
MakeCompass('n');
ToggleXPBar(True);
OriginalXP := GetXPBarTotal;
ExitSquealOfFortune;
end;
Keep in mind it needs to be BEFORE your declaration of SetupSRL wherever you choose to put it. Treat the sixhourfix and fix speed as how you used to define SMART with smart_server and members etc.
Powered by vBulletin® Version 4.2.1 Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.