Results 1 to 7 of 7

Thread: Cannot Get Simba to Click

  1. #1
    Join Date
    Aug 2015
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default Cannot Get Simba to Click

    Hey guys.. Completely new to scripting here.. I've worked through a few of the tutorials I've found online though.. and everything has worked out so far. The only problem i am having is i can't get Simba to Click on anything... it successfully runs the script, but doesn't click on what it's suppose to.. this is what ive been using...


    program new;

    procedure MoveTheMouse;
    begin
    MoveMouse(480 , 500);
    end


    procedure ClickFarmPlot;
    begin
    ClickMouse( 480 , 500 , 1);
    end


    begin
    MoveTheMouse;
    ClickFarmPlot;
    end.



    And now for some reason it keeps telling me [Error] (10:1): Semicolon (';') expected at line 11.. or line 10, or line 6.. the line is always different... any help would be greatly appreciated

    *edit* If i use this script on a website, it will click on the website. but when i try to use it on a game client, it won't click anything
    Last edited by Buck42; 08-31-2015 at 03:15 PM.

  2. #2
    Join Date
    Feb 2015
    Posts
    422
    Mentioned
    41 Post(s)
    Quoted
    226 Post(s)

    Default

    First of all, you should never use static clicking like that!

    Second, your ends are missing semi colons after them only the last end should have a period, the others need a smi-colon

  3. #3
    Join Date
    Aug 2015
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Fady,

    Thank you for the fast response!.. and *duh* i need the semi colon's after the ends.. that's why i am getting the error.. that you so much... and what do you mean i shouldn't use static clicking like that?? how should i get Simba to click things within the game ?


    *edit*

    also, on the command ClickMouse(x , y , variable) ... what is the variable?? and how would i make the mouse double click?
    Last edited by Buck42; 08-31-2015 at 03:31 PM.

  4. #4
    Join Date
    Jun 2012
    Posts
    586
    Mentioned
    112 Post(s)
    Quoted
    296 Post(s)

    Default

    Last parameter is the button to click. I think 0 is right, 1 is left, etc.

    MKe sure SMART is enabled.




    Skype: obscuritySRL@outlook.com

  5. #5
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by Buck42 View Post
    how should i get Simba to click things within the game ?
    Use SRL.

    I can expound on that a bit if you tell me which game you're scripting for (RS3 or OSRS)
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Badâ„¢ before everyone gets laser pistols

  6. #6
    Join Date
    Aug 2015
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by KeepBotting View Post
    Use SRL.

    I can expound on that a bit if you tell me which game you're scripting for (RS3 or OSRS)
    its actually for Eldevin,

    so i Enable SRL and then just use ClickMouse?? also where do i enable SMART?
    Last edited by Buck42; 08-31-2015 at 07:26 PM.

  7. #7
    Join Date
    Jun 2013
    Location
    Scranton
    Posts
    496
    Mentioned
    5 Post(s)
    Quoted
    220 Post(s)

    Default

    SMART does not support what ever game that is, only runescape afaik

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
  •