Results 1 to 7 of 7

Thread: Made this kinda autologger to log every bot in to same world but need help!

  1. #1
    Join Date
    Dec 2011
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Made this kinda autologger to log every bot in to same world but need help!

    So the problem is the mouse doesnt move fast enough and it only logs about 5 of the clients in.

    (clients must be set on same coordinates everytime)

    EDIT: Yes I tried lots of different numbers as mouse speed. And at some point it just stopped working.

    Simba Code:
    program ArthuroLogin;

    {$i srl/srl.simba}



    begin
    mousespeed:=9999;
    mouse(2300, 980, 0, 0, mouse_Left);
    mouse(2300, 870, 0, 0, mouse_Left);
    mouse(2300, 775, 0, 0, mouse_Left);
    mouse(2300, 665, 0, 0, mouse_Left);
    mouse(2300, 570, 0, 0, mouse_Left);
    mouse(1290, 988, 0, 0, mouse_Left);
    mouse(1290, 880, 0, 0, mouse_Left);
    mouse(1290, 775, 0, 0, mouse_Left);
    end.

    Tried to google found this...
    Last edited by arthuro; 05-06-2012 at 09:52 PM.

  2. #2
    Join Date
    Mar 2012
    Location
    127.0.0.1
    Posts
    3,383
    Mentioned
    95 Post(s)
    Quoted
    717 Post(s)

    Default

    Explain what this does...?

    If you open each SMART on a seperate server, it should let you log in, always lets me.

  3. #3
    Join Date
    Mar 2012
    Location
    Over there
    Posts
    840
    Mentioned
    4 Post(s)
    Quoted
    42 Post(s)

    Default

    I think he's trying to log into 8 accounts at once in the same world by clicking play now on every one of them. No clue why you would wanna do this but it should work if the coordinates are correct.

  4. #4
    Join Date
    Oct 2011
    Location
    UK
    Posts
    1,322
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    Set up multiple simbas and tell them to all click different clients at a specified time

  5. #5
    Join Date
    May 2008
    Location
    ;)
    Posts
    576
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Simba Code:
    MoveMouse(500,500);
    clickmouse(500,500,1);

    note, you MUST move the mouse before you click the mouse, otherwise it'll just click where the mouse is (as in, clickmouse does not move the mouse - I have no idea what it asks for coordinates).

    also note, that if that isn't fast enough, then you either need to get your buttons closer, or nothing will be.

  6. #6
    Join Date
    Dec 2006
    Location
    Sydney, New South Wales, Australia
    Posts
    4,603
    Mentioned
    15 Post(s)
    Quoted
    42 Post(s)

    Default

    Use this

    Simba Code:
    procedure InstantMouse(const x, y, rx, ry: Integer; Mouse: Byte);
    var
      tP: TPoint;
    begin
      tP := Point(x + Random(rx), y + Random(ry));
      MoveMouse(tP.x, tP.y);
      ClickMouse(tP.x, tP.y, Mouse);
    end;

    Just replace all instances of "Mouse" in your script with "InstantMouse" (without the quotes, of course).
    You may contact me with any concerns you have.
    Are you a victim of harassment? Please notify me or any other staff member.

    | SRL Community Rules | SRL Live Help & Chat | Setting up Simba | F.A.Q's |

  7. #7
    Join Date
    Dec 2011
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by putonajonny View Post
    Set up multiple simbas and tell them to all click different clients at a specified time
    This sounds interesting, how could I get simba to read system time and click coordinate at some exact system time?

    EDIT: I got win7 if it makes difference.

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
  •