Results 1 to 6 of 6

Thread: Fishing Script Help

  1. #1
    Join Date
    Jun 2008
    Posts
    57
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Fishing Script Help

    I am trying to make a powerfisher and I was wondering if there was anyway I could check if my player is fishing. Right now, the script just clicks on the fishing spot even while its fishing.

  2. #2
    Join Date
    Sep 2007
    Posts
    638
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    repeat
        Wait(500+random(100));
        Inc(Times);
      until(InvFull) or not (GetUpText('{fishing spot up text'})) or (Times > 10);

    That way when the spot moves you should follow it. If you get a full inventory you can drop.

  3. #3
    Join Date
    Jun 2008
    Posts
    57
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks, ill try that out. any idea on how to make it click the second fish option? like if i wanted it to lure instead of bait.

  4. #4
    Join Date
    Sep 2007
    Posts
    638
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    Mouse(x,y,3,3,False);
    ChooseOption('ure');

    With ChooseOption you input the string of the option that you wish to be chosen, minus the capital letter in front. So Lure would be ure or Drop would be rop.

  5. #5
    Join Date
    Dec 2007
    Location
    192.168.1.73
    Posts
    2,439
    Mentioned
    6 Post(s)
    Quoted
    119 Post(s)

    Default

    You can have capitals for ChooseOption, just takes SCAR longer to read them.

  6. #6
    Join Date
    Mar 2007
    Location
    <3
    Posts
    2,683
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You need a Wait between Mouse & ChooseOption otherwise the menu won't be fast enough to load.

    Wait(130+Random(100));
    Place that between them

    Also, ChooseOption needs to be Uppercase for Uppercase letters.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 6
    Last Post: 04-16-2009, 06:40 AM
  2. Fishing Script
    By jamesreece in forum OSR Help
    Replies: 12
    Last Post: 03-14-2008, 08:58 AM
  3. Help with Net Fishing Script
    By asdf101 in forum OSR Help
    Replies: 4
    Last Post: 01-19-2008, 02:02 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
  •