Results 1 to 7 of 7

Thread: Need some help with mouse movement.

  1. #1
    Join Date
    Aug 2006
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default Need some help with mouse movement.

    Okay, sort of a noobie question, I know.

    But I am making a high alcher, and say I want it to click on a certain place. How do I give it more tolerance so it will click around the exact point?

  2. #2
    Join Date
    Mar 2007
    Location
    Under a rock
    Posts
    813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you can find a color in a specified box, find a bitmap/dtm in your inventory, or a couple other things.

    SCAR Code:
    FindColorSpiralTolerance(x,y,ItemColor,MIX1,MIY1,MIX2,MIY2,3) //this will look for the color(ItemColor) that is in the inventory with a color tolerance of 3

    BUT, the best thing for finding a specific item in your inventory is making a dtm.

  3. #3
    Join Date
    Aug 2006
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Dang, I am not good at this stuff, lol. Does anyone know of a good high alcher that uses bitmaps?

  4. #4
    Join Date
    Mar 2007
    Posts
    105
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    use
    if(findcolortolerance(x,y,color,msx1,msy1,msx2,msy 2,5))then//will find your color in the runescape window and store the co ordinance at x,y
    wait(50+random(20));
    MMouse(x,y,0,0);//Moves mouse to x,y co ordinance
    wait(50+random(50));
    Mouse(x,y,0,0);//Clicks mouse at x,y co ordinance

  5. #5
    Join Date
    Dec 2006
    Location
    Australia
    Posts
    698
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    adamb to make the mouse click you need to have it like
    Mouse(x,y,0,0, true);//Clicks mouse at x,y co ordinance
    this will click on the xy cords

    Mouse(x,y,0,0, false);//Clicks mouse at x,y co ordinance
    this will right click on the xy cords

  6. #6
    Join Date
    Mar 2007
    Posts
    105
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by me_ntal View Post
    adamb to make the mouse click you need to have it like
    Mouse(x,y,0,0, true);//Clicks mouse at x,y co ordinance
    this will click on the xy cords

    Mouse(x,y,0,0, false);//Clicks mouse at x,y co ordinance
    this will right click on the xy cords
    oops, my bad, thanks for catching that!

  7. #7
    Join Date
    Aug 2006
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    to put in anti randoms, do you need alot of lines? Or is there one simple line u can just use?

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Random Mouse Movement?
    By skilld u in forum OSR Help
    Replies: 7
    Last Post: 04-29-2008, 04:25 PM
  2. Making a mouse movement
    By Infantry001 in forum OSR Help
    Replies: 23
    Last Post: 11-09-2006, 02:26 AM

Posting Permissions

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