Results 1 to 6 of 6

Thread: Best way to click inv item?

  1. #1
    Join Date
    Oct 2012
    Location
    Porto, Portugal
    Posts
    218
    Mentioned
    0 Post(s)
    Quoted
    42 Post(s)

    Default Best way to click inv item?

    So what is the best / more human-like way to click a inventory item (in this case an herb).

    Peace

  2. #2
    Join Date
    Nov 2011
    Location
    England
    Posts
    3,072
    Mentioned
    296 Post(s)
    Quoted
    1094 Post(s)

    Default

    you can do invmouse(slot)

  3. #3
    Join Date
    Jun 2012
    Posts
    2,182
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    If you are cleaning herbs, use a for..to..do statement to clean them like this.

    Simba Code:
    Procedure cleanherbs;
    Var
      I:integer;
    Begin
      For I := 1 to 28 do
        Begin
          Invmouse(I);
          Wait(randomrange(150, 300));
        End;
    End;
    Thx Euphemism and Vinyl for the awesome siggy and avatar!

  4. #4
    Join Date
    Jan 2012
    Location
    127.0.0.1
    Posts
    702
    Mentioned
    11 Post(s)
    Quoted
    76 Post(s)

    Default

    Quote Originally Posted by Footy View Post
    If you are cleaning herbs, use a for..to..do statement to clean them like this.

    Simba Code:
    Procedure cleanherbs;
    Var
      I:integer;
    Begin
      For I := 1 to 28 do
        Begin
          Invmouse(I);
          Wait(randomrange(150, 300));
        End;
    End;
    this is true, but it might also be an idea to send virtual keys like control+ up/ downto simulate mousekeys

  5. #5
    Join Date
    Apr 2012
    Posts
    365
    Mentioned
    0 Post(s)
    Quoted
    30 Post(s)

    Default

    Invmouse Obviously, It won't move mouse again if you already place it within the area.

  6. #6
    Join Date
    Jan 2012
    Location
    127.0.0.1
    Posts
    702
    Mentioned
    11 Post(s)
    Quoted
    76 Post(s)

    Default

    what about rightclick options... that would move the mouse

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
  •