Results 1 to 6 of 6

Thread: Can't Run Multiple Accounts

  1. #1
    Join Date
    Oct 2012
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Exclamation Can't Run Multiple Accounts

    I'm having trouble getting multiple accounts to run. The thing just doesn't open, except once but then the second one wouldnt type in user and pass. Here is my code -
    Code:
    program AutoTyperSmart;
    {$DEFINE SMART}
    {$i SRL\SRL.simba}
    
    procedure DeclarePlayers;
    begin
      HowManyPlayers := 2;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;
    
      with Players[0] do
      begin
        Name := '';
        Pass := '';
        Nick := '';
        Active := True;
      end;
    
      with Players[1] do
      begin
        Name := '';
        Pass := '';
        Nick := '';
        Active := True;
      end;
    end;
    
    
    
    
    Begin
    SetupSRL
      Declareplayers
      LoginPlayertoLob();
        SelectWorld(3);
        LoginPlayer;
      Activateclient
    
    
    Repeat
    Wait(1000+Random(500));
    
    DoEmote(RandomRange(14,16));
    TypeSendEx('Text Here',True);
    DoEmote(RandomRange(14,16));
    
    
    until(false)
    if not (LoggedIn) then
    LoginPlayer;
    end.
    begin
    end.
    I took out my details on the accounts, but what can I do to fix this? If you have can help, try PMing me.

  2. #2
    Join Date
    Oct 2012
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Can someone help by any chance? I'm willing to pay if you respond fast.

  3. #3
    Join Date
    Nov 2011
    Location
    United States
    Posts
    815
    Mentioned
    6 Post(s)
    Quoted
    284 Post(s)

    Default

    Set up the script itself for One person , take out the second Players(1).

    In your scripts folder, just Make copy of the script, and name it like version2. and you can run the script multi times like that, just make a new Copy for each account you want to run it on.

  4. #4
    Join Date
    Oct 2012
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Okay thanks, I'll try it. Can I get them on the same world though?

  5. #5
    Join Date
    Mar 2013
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    close all runescape programs. Search for "random.dat" then right click the first, and only one. Then check mark the read-only checkbox.

    If you need a better explanation I can do so for you.

  6. #6
    Join Date
    Aug 2012
    Location
    127.0.0.1
    Posts
    74
    Mentioned
    1 Post(s)
    Quoted
    26 Post(s)

    Default

    Note if you have JAG on any of those accounts disabling random.dat will mean you need to add another safe place for you to login from.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •