Results 1 to 12 of 12

Thread: Small Help.

  1. #1
    Join Date
    Mar 2007
    Posts
    1,223
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Small Help.

    hey, people..
    I was wandering what I suppose to do when I make a script and lets say for example : im cooking lobsters...it will come on the chatbox of runescape a pic of a lob and if you right click it, it will say Make All....to do that is there a special function or anything?
    Please help all would be repped.
    Thanks

  2. #2
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Makea procedure like this

    SCAR Code:
    procedure CookAll;

    begin
      mouse(x, y, 3, 3, false);
      chooseoption('ook All');
    end;

  3. #3
    Join Date
    Mar 2007
    Posts
    1,223
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by Da 0wner View Post
    Makea procedure like this

    SCAR Code:
    procedure CookAll;

    begin
      mouse(x, y, 3, 3, false);
      chooseoption('ook All');
    end;
    ye but wat is x and y? How does it know to click that icon.?

  4. #4
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    X and Y are the coordinates of the lobster cook thingy. I thing that you should just use that because I don't know if there is a new function for that so just replace x and y with the coordinates of the button to cook.

  5. #5
    Join Date
    Mar 2007
    Posts
    1,223
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    no lol...I MEAN..ummm you know when you click the lob to the fire...it pops up in the runescape chat box a picture of a lobster and if your right click it will say cook all...I need it to find the picture of the lobster in the runescape chat box..and then right click and click cook all..

  6. #6
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Wow......i just said that. But you can do a dtm of the lobster thing and if it finds that it does my procedure...

  7. #7
    Join Date
    Sep 2006
    Location
    include srl/srl.scar ( aussie)
    Posts
    2,875
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you dont have to pind the picture of the lobster use the procedure da owner made

    procedure CookAll;

    begin
    mouse(x, y, 3, 3, false);
    chooseoption('ook All');
    end;
    mouse x, y //clicks on it
    //chooseoption chooses the option cook but you put 'ookAll" cause it doesnt find the capital

  8. #8
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yea sorry, but actually it still does work...

  9. #9
    Join Date
    Mar 2007
    Posts
    1,223
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    omg..you guys dont get it...it doesnt know what x and y is! It needs to find the pic in the runescape chat box then it suppose to your procedure...how can i make it find the pic in the chat box..(pleads everyone to try to help!)

  10. #10
    Join Date
    Apr 2007
    Posts
    994
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Read, yakman's DTM tutorial, or

    how about just do a colourpick of the center of the lobster, set up the coordinates of what the colourpicker tells you

    x:=???;
    y:=???;

    Then add that to the above script and run it.
    [QUOTE]<GoF`> oh no its Raymooond
    <Raymooond> Heya
    <GoF`> is it ray or some other ray?
    <LeeLokHin> No idea
    <LeeLokHin> Raymond, what's the game you like the most?
    <Raymooond> Runescape
    <-- LeeLokHin has kicked Raymooond from #srl (Faker.)[/QUOTE]

  11. #11
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Here use this one in my Karamja Fisher:

    SCAR Code:
    If ClickToContinue then
    Mouse(x,y-10,0,0,false)
    ChooseOption('all');

    It works all the time by finding the cook screen ClickToContinue I add subtractions to the y co-ord so it will click a bit higher onto the lobster pic

    Hope I Helped

  12. #12
    Join Date
    Mar 2007
    Posts
    1,223
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by NaumanAkhlaQ View Post
    Here use this one in my Karamja Fisher:

    SCAR Code:
    If ClickToContinue then
    Mouse(x,y-10,0,0,false)
    ChooseOption('all');

    It works all the time by finding the cook screen ClickToContinue I add subtractions to the y co-ord so it will click a bit higher onto the lobster pic

    Hope I Helped
    LOl, thanks for the smart idea...

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Help (only small)
    By poolikemax in forum OSR Help
    Replies: 5
    Last Post: 08-27-2008, 10:09 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
  •