Results 1 to 2 of 2

Thread: Fishing Help

  1. #1
    Join Date
    Oct 2011
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Question Fishing Help

    I'm trying to make the script hover over the pool which it does right click then select cage fishing and possible ignore shark pools if possible.

    It currently hovers over the pool right clicks and hangs there.

    Procedure Findspot;
    begin
    if(FindColorSpiralTolerance(x, y, 14728868, MSX1, MSY1, MSX2, MSY2, 5))then
    begin
    MMouse(RandomRange(X - 5, X + 5), RandomRange(y - 5, y + 5), 0, 0);
    ClickMouse2(mouse_right);
    if P07_IsUpTextMultiCustom(['Cage']) then
    Writeln('We Found Some Fish');
    wait (75+random(100));
    ClickMouse2(mouse_left);
    PastInvCounter := P07_InvCount;
    End;
    End;

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

    Default

    Uptext is the text in the top left corner of the screen, try using

    Simba Code:
    P07_ChooseOptionMulti(['Cage','age']);

    When ever you want to selection a option always use that

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
  •