Results 1 to 5 of 5

Thread: Can't Get MMouse to work/ flax picker... [06/07 RSPS]

  1. #1
    Join Date
    Feb 2016
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default Can't Get MMouse to work/ flax picker... [06/07 RSPS]

    I've watched multiple tutorials and done everything I thought I was suppose to do. I got SRL and SPS successfully installed into simba but it doesn't seem that any of their functions work.

    I'm trying to work off various scripts for a rsps flax picker.

    the server has no anti-botting and all i need to do is have my char run from flax field to bank.

    I'm a savvy enough script noob that I'd be able to modify the script to do other things (wc, fishing, etc)
    but I just can't seem to get started and I feel stuck.

    TLDR: Simba is up to date, SRL & SPS up to date, doesn't appear to have the functions, ie MMOUSE

    thanks for reading

  2. #2
    Join Date
    Sep 2014
    Posts
    447
    Mentioned
    10 Post(s)
    Quoted
    203 Post(s)

    Default

    Can you post some of your code?

  3. #3
    Join Date
    Feb 2016
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    The code is not the issue, I get "Error: Unknown declaration "MMouse" at line 56" when I attempt to compile. I have all the proper SRL & SPS includes (and code at top) , for some reason they don't seem to be working.

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

    Default

    Quote Originally Posted by peaches92 View Post
    The code is not the issue, I get "Error: Unknown declaration "MMouse" at line 56" when I attempt to compile. I have all the proper SRL & SPS includes (and code at top) , for some reason they don't seem to be working.
    The code is probably the issue. Post it or there's no real way for us to help you. It's like asking a mechanic what's wrong with your car, and then refusing to bring it in for inspection.
    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

  5. #5
    Join Date
    Mar 2014
    Posts
    195
    Mentioned
    4 Post(s)
    Quoted
    92 Post(s)

    Default

    considering you said latest srl is up-to-date, which will prob be srl-6.

    MMouse is probably in earlier versions of srl so you could try this depending on how many times it is used in the script.

    Simba Code:
    procedure MMouse(x,y:integer);
    begin
    mouse(point(x,y),MOUSE_MOVE,MOUSE_ACCURATE);
    end;
    OR
    Simba Code:
    procedure MMouse(x,y:integer);
    begin
    MoveMouse(x,y);
    end;
    from
    http://docs.villavu.com/simba/script...dkeyboard.html

    or you need the osr srl include https://github.com/SRL/SRL-OSR

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
  •