Results 1 to 7 of 7

Thread: Clicking wrong spot!

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

    Default Clicking wrong spot!

    Need help! I have this and doesn't find the right spot

    Code:
    begin
        logs := DTMFromString('78DA639CCFC4C0F098010544062A324802694' +
          '620FE0F048C33816AEE30A00146B81A306F2A116A1601D5DC24A0' +
          '661950CD1B026AA603D57CC4AF060001280E78');
        repeat
          wait(800 + random(200));
          if FindDTM(Logs, x, y, 0, 0, 583, 263) then
          begin
    
            wait(400 + random(100));
            MMouse(x, y, 0, 0);
            Mouse(x, y, 4, 6, false);
            wait(500);
            if (ChooseOption(x, y, 'Sell 10')) then
          end;
        until (not (FindDTM(logs, x, y, 0, 0, 710, 446)));
    I have a pic where it right clicks and have a pic where it should click but wont. Here it is.. Please help me i think i got the if FindDTM(Logs, x, y, 0, 0, 583, 263-This part wrong)


  2. #2
    Join Date
    Jun 2006
    Posts
    1,492
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    try this...

    SCAR Code:
    if FindDTM(x,y,logs,MIX1,MIY1,MIX2,MIY2) then
      Mouse(x,y,5,5,true)

    The constants MIX1,MIY1,MIX2,MIY2 are the top left and bottom right corners of your inventory.

  3. #3
    Join Date
    Mar 2007
    Posts
    138
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    but i want it to right click and sell and if i do that it'll just keep clicking on the willows in the store

  4. #4
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    steth, you do have a lot of random pixels. That maybe your problem if your miss clicking. But I'm not 100% sure what the problem is. Please specify your problem and I should be able to help you.

  5. #5
    Join Date
    Mar 2007
    Posts
    138
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    read my first post, it clicks on the wrong willows, also look at the pic(Takes awhile to load up)

    I want it to right click on the willows in my inventory then right click and sell 10 until can't find the DTM thingy

    It clicks on the willows in the store instead of inv.

    Also i have it load the DTM if you read the above thing and wonder if i did or not

  6. #6
    Join Date
    Jun 2006
    Posts
    1,492
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I told you, use my way

    Except, use:
    SCAR Code:
    if FindDTM(x,y,logs,MIX1,MIY1,MIX2,MIY2) then
    begin
      Mouse(x,y,5,5,false);
      ChooseOption(x,y,'10');
    end;

    It should work!

  7. #7
    Join Date
    Mar 2007
    Posts
    138
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    kk ill try it now since u used false and 10

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. clicking on things is wrong.
    By jakeyboy29 in forum News and General
    Replies: 3
    Last Post: 07-10-2008, 04:51 PM
  2. Go from Bank to another spot
    By Nexhou in forum OSR Help
    Replies: 6
    Last Post: 06-03-2008, 04:57 PM
  3. Coord Clicking NOT Wrong!!!
    By ShowerThoughts in forum Discussions & Debates
    Replies: 39
    Last Post: 05-10-2008, 09:11 PM
  4. Maybe not right spot but...
    By wonly in forum RS3 Outdated / Broken Scripts
    Replies: 4
    Last Post: 03-15-2007, 07:23 PM

Posting Permissions

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