Results 1 to 11 of 11

Thread: Option Selecting Help?

  1. #1
    Join Date
    Mar 2013
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default Option Selecting Help?

    P07_ChooseOptionMulti(['Take']);

    Why won't it click the Take option, or any other option.

  2. #2
    Join Date
    Jun 2007
    Posts
    532
    Mentioned
    1 Post(s)
    Quoted
    68 Post(s)

    Default

    Post your script? Maybe you aren't using it right?
    Finished B.S. Program in Radiology!!

    Projects: A big one! Total secret! hehe

  3. #3
    Join Date
    Oct 2012
    Location
    Italy
    Posts
    145
    Mentioned
    0 Post(s)
    Quoted
    44 Post(s)

    Default

    It is supposed to work correctly, we can't know why it isn't working if you're not posting any piece of code from your script...
    Check out my new script here: http://villavu.com/forum/showthread.php?p=1194418 Al-Kharid Silk buyer

  4. #4
    Join Date
    Mar 2013
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    procedure releaseMice(SlotToRelease: Integer);
    var
    xsx, ysy, R, C: Integer;
    begin
    xsx := 565;
    ysy := 215;
    C := (Round(SlotToRelease / 4));
    R := (SlotToRelease - (C * 4));
    SlotToRelease := SlotToRelease + 1;
    Wait(200 + Random(500));
    if P07_ItemExists(SlotToRelease) then
    begin
    P07_MouseBox(xsx + (R * 42) + 10, ysy + (C * 36) + 10, xsx + (R * 42) + 20, ysy + (C * 36) + 20, mouse_right);
    P07_ChooseOptionMulti(['Release']);
    end;
    end;

  5. #5
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Where's P07_ChooseOptionMulti(['Take']);

    Creds to DannyRS for this wonderful sig!

  6. #6
    Join Date
    Mar 2013
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by Sjoekeloe View Post
    Where's P07_ChooseOptionMulti(['Take']);
    its
    P07_ChooseOptionMulti(['Release']);
    in this code

  7. #7
    Join Date
    Mar 2013
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    bump

  8. #8
    Join Date
    Jul 2011
    Location
    /home/litoris
    Posts
    2,226
    Mentioned
    0 Post(s)
    Quoted
    159 Post(s)

    Default

    do it like this:
    Simba Code:
    Wait(Randomrange(300,600));
    P07_ChooseOptionMulti(['Release', 'elease', 'eleas']);

    Waiting after clicking is a good diea (nothing is instant) and putting more options there is needed in case OCR screws up while reading.
    Last edited by litoris; 03-13-2013 at 06:54 PM.
    Miner & Urn Crafter & 07 Chicken Killer
    SPS BlindWalk Tutorial

    Working on: Nothing

    teacher in every art, brought the fire that hath proved to mortals a means to mighty ends

  9. #9
    Join Date
    Mar 2013
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    It's still not clicking release :/

  10. #10
    Join Date
    Jul 2011
    Location
    /home/litoris
    Posts
    2,226
    Mentioned
    0 Post(s)
    Quoted
    159 Post(s)

    Default

    I messed up with a parenthesis, see this version.
    Miner & Urn Crafter & 07 Chicken Killer
    SPS BlindWalk Tutorial

    Working on: Nothing

    teacher in every art, brought the fire that hath proved to mortals a means to mighty ends

  11. #11
    Join Date
    Mar 2013
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by litoris View Post
    I messed up with a parenthesis, see this version.
    No, i fixed that when I tried it. When I ran the script it still didn't click release.

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
  •