Results 1 to 14 of 14

Thread: [2007] Help

  1. #1
    Join Date
    Feb 2013
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default [2007] Help

    I need to make this click option "Take Bones" But bu using text. So it finds text --Take Bones--

    Code:
    clickmouse2(mouse_right);
    ChooseOption('ake Bo');
    end;

  2. #2
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Try adding a wait your giving it no time to find the text

  3. #3
    Join Date
    Feb 2013
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    wait(200)
    clickmouse2(mouse_right);
    wait(200)
    P07_ChooseOptionMulti(['Take Bones']);
    wait(200)



    doesnt work still. it right clicks.. and stays there

  4. #4
    Join Date
    Oct 2012
    Posts
    758
    Mentioned
    6 Post(s)
    Quoted
    282 Post(s)

    Default

    Try WaitOptionMultiEx.
    For more information on it type it in the search bar of the Simba program.

    Also, the string you're looking for..Chances are it's just not finding that whole string 'Take Bones'...
    So look for multiple strings e.g. 'ake B','ones' etc...

    Best of luck.

  5. #5
    Join Date
    Feb 2013
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    I dont understand. =[ I have the right clck working, but i need it to pick up bones

  6. #6
    Join Date
    Oct 2012
    Posts
    758
    Mentioned
    6 Post(s)
    Quoted
    282 Post(s)

    Default

    I just told you...change the strings you're looking for and try using the function I just gave to you.
    What do you not understand?

  7. #7
    Join Date
    Feb 2013
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Code:
    clickmouse2(mouse_right);
    wait(200)
    ChooseOptionMulti(['ake Bo']);
    wait(200)
    end;
    Insert for me or tell me where to do it? im new..

  8. #8
    Join Date
    Oct 2012
    Posts
    758
    Mentioned
    6 Post(s)
    Quoted
    282 Post(s)

    Default

    Here...
    WaitOptionMultiEx(['ake B','ones'], RandomRange(3000,4000), True)

    Like I said though..look at the include if you want to understand the code.

  9. #9
    Join Date
    Feb 2013
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Error: Invalid Number of parameters?

  10. #10
    Join Date
    Oct 2012
    Posts
    758
    Mentioned
    6 Post(s)
    Quoted
    282 Post(s)

    Default

    That means you have the wrong number of parameters...
    e.g. putting Wait(30, 30) when it should be Wait(30)

    https://github.com/SRL/SRL-5/blob/ma...e/timing.simba
    Or look inside of the include!
    I refuse to hand everything to you on a silver plate, because you'll never learn like that.
    Like it's been said before...use a string finding function with a wait timer and look for multiple parts of the string.
    Instead of 'Take Bones' look for e.g. 'ke Bo' and 'ones'.

  11. #11
    Join Date
    Feb 2013
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Its nothing to do with timing, I have my times set correctly, It wont find the text Take Bones =[ Ugh..

  12. #12
    Join Date
    Oct 2012
    Posts
    758
    Mentioned
    6 Post(s)
    Quoted
    282 Post(s)

    Default

    Look at parts of the string. 3-4 characters. Been saying this over and over again...

    PS: The params I gave you for WaitOptionMultiEx are off..you need to look at the include

    Good luck my friend tell me when you got it working by using smaller strings.

  13. #13
    Join Date
    Jan 2012
    Location
    Calgary, AB, Canada
    Posts
    1,819
    Mentioned
    5 Post(s)
    Quoted
    120 Post(s)

    Default

    If it's for 07 then you can't use the function Runehack123 suggested as thats for normal runescape
    Current Project: Retired

  14. #14
    Join Date
    Oct 2012
    Posts
    758
    Mentioned
    6 Post(s)
    Quoted
    282 Post(s)

    Default

    Quote Originally Posted by Gucci View Post
    If it's for 07 then you can't use the function Runehack123 suggested as thats for normal runescape
    Nevermind then, parameters are fine... 07 Runescape thanks Gucci. He's just going to have to get around to actually looking at the include. There's that search button in Simba and it's there for a reason - make your life easier ... look for things like chooseopt and I'm sure something handy will come up!
    (And I don't mean the forum search button - I mean the one in your Simba program!)

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
  •