Results 1 to 7 of 7

Thread: mouse click without taking control

  1. #1
    Join Date
    Jun 2012
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default mouse click without taking control

    how can i click in the background so i can minimize my application without it taking control of my real mouse.
    my script is as follows (very simple)

    Simba Code:
    begin
      repeat
        MoveMouse(238, 269);
        GetMousePos(x, y);
        Wait(100);
        ClickMouse(238, 269, mouse_right);
        Wait(100);
        MoveMouse(267, 298);
        GetMousePos(x, y);
        ClickMouse(280, 298, mouse_left);
        Wait(500);
        IncEx(BoltsToBuy, 10);
        WriteLn('Bolts: ' + IntToStr(BoltsToBuy));
      until (IsKeyDown(114)); //pres F3 to stop and continue to Proggie!
    end.

  2. #2
    Join Date
    Sep 2010
    Location
    Azeroth
    Posts
    395
    Mentioned
    0 Post(s)
    Quoted
    17 Post(s)

    Default

    well for anything not runescape you can use appa , but for runescape use S.M.A.R.T...



    Simba Code:
    program

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


    begin
      Smart_Server := 30;
      Smart_Members := False;
      Smart_Signed := True;
      Smart_SuperDetail := False;

      ClearDebug;
      SetupSRL;    


    repeat
        MoveMouse(238, 269);
        GetMousePos(x, y);
        Wait(100);
        ClickMouse(238, 269, mouse_right);
        Wait(100);
        MoveMouse(267, 298);
        GetMousePos(x, y);
        ClickMouse(280, 298, mouse_left);
        Wait(500);
        IncEx(BoltsToBuy, 10);
        WriteLn('Bolts: ' + IntToStr(BoltsToBuy));
      until (IsKeyDown(114)); //pres F3 to stop and continue to Proggie!
    end.

  3. #3
    Join Date
    May 2011
    Posts
    24
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Quote Originally Posted by wantonman View Post
    well for anything not runescape you can use appa , but for runescape use S.M.A.R.T...
    Can you please link me to 'appa'? I would appriciate it :P

  4. #4
    Join Date
    Jun 2012
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    yeah this is for a runescape private server "soulsplit" im trying to design a couple scripts

  5. #5
    Join Date
    Jul 2010
    Location
    Western US
    Posts
    387
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Post

    RED FLAG!!!!

    I would highly recommend you edit your script a little so you dont get banned!

    The following would slightly decrease your chance of getting banned. What you must remember is that all human players are not consistat with their clicking, mouse moving, timing, and duration. we want a bot to play like we do. I would also recommend you visit some of the tutorials.
    http://villavu.com/forum/forumdisplay.php?f=28

    Best of luck!
    Simba Code:
    program new;

    {$i srl/srl.simba}


    begin
       SetupSRL;
    repeat
        mmouse(238, 269,3,3);  //moves mouse with some slop, I.E.to the point, but can vary 3 in ether direction
        GetMousePos(x, y);
        Wait(100+random(100));//adds some random time
        ClickMouse(238, 269, mouse_right);
        Wait(100+random(100)); //adds some random time
        mmouse(267, 298,3,3); //adds some randomness to your mouse movement
        GetMousePos(x, y);
        ClickMouse(280, 298, mouse_left);
        Wait(500+random(300));//adds some random time
        IncEx(BoltsToBuy, 10);
        WriteLn('Bolts: ' + IntToStr(BoltsToBuy));
      until (IsKeyDown(114)); //pres F3 to stop and continue to Proggie!
    end.
    Of all the things I have lost, I miss my mind the most.
    Current Projects:
    Addy bar miner and superheater

  6. #6
    Join Date
    Jun 2012
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    this is for a pserver so randomness isnt that important. I just need to get it to click without actually using my mouse so i can run 2 bots at once (1 buying rune bolts and 1 making dbolt tips)

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

    Default

    Quote Originally Posted by cynicz View Post
    this is for a pserver so randomness isnt that important. I just need to get it to click without actually using my mouse so i can run 2 bots at once (1 buying rune bolts and 1 making dbolt tips)
    not possible, even with appa. your best bet is using a virtual machine, like what i use for my scripts for sousplit

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
  •