Log in

View Full Version : Getting two SMART clients to log in on the same world.



KeepBotting
08-31-2012, 09:49 PM
I've already done the random.dat trick, I CAN MULTILOG.
What I want to know is HOW.

const
{---SMART Setup Constants---}
WORLD = 33; //Put your desired Runescape world number here. Leave it as 0 to choose a random world.
MEMBERS = False; //False if you are Free-To-Play. True if you are a Member.
SIGNED = True; //True if running a single account, False otherwise. This script only declares 1 player anyway, so just leave it alone.
{---------------------------}
This is what I'm using to try and get both of my SMARTs to log on to World 33.

Come to think of it, this is probably deprecated...But how can I tell SMART to choose a certain world?


Sorry for all the nooby questions lately, I've been a little out-of-sync ever since update 999.

Le Jingle
08-31-2012, 10:00 PM
Make sure your scripts follow these standards. Notice in the DeclarePlayers Procedure, the line that let's you choose which world to log into.

{$DEFINE SMART}
{$i srl/srl.simba}

procedure DeclarePlayers;
begin
HowManyPlayers:= 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer:= 0;
with Players[0] do
begin
Name := 'zezima';
Pass := 'zezimapassword';
Active := True;
WorldInfo := [true, 44]; // logs into w44 soulwars
end;
end;

begin
{$IFDEF SMART}
SRL_SixHourFix := True;
Smart_FixSpeed := True;
{$ENDIF}
SetupSRL;
end.


This is just an idea, for use with Simba (0.991) and S.M.A.R.T. (8.0). Apply these standards into the script you are using. Let me know if that helps your script

KeepBotting
08-31-2012, 10:01 PM
Make sure your scripts follow these standards. Notice in the DeclarePlayers Procedure, the line that let's you choose which world to log into.

{$DEFINE SMART}
{$i srl/srl.simba}

procedure DeclarePlayers;
begin
HowManyPlayers:= 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer:= 0;
with Players[0] do
begin
Name := 'zezima';
Pass := 'zezimapassword';
Active := True;
WorldInfo := [true, 44]; // logs into w44 soulwars
end;
end;

begin
{$IFDEF SMART}
SRL_SixHourFix := True;
Smart_FixSpeed := True;
{$ENDIF}
SetupSRL;
end.
Thanks.

Jw, how new is WorldInfo?