Results 1 to 5 of 5

Thread: PowerFisher

  1. #1
    Join Date
    Sep 2007
    Posts
    31
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default PowerFisher

    hey, i am trying to make a powerfisher at the moment but i need help with the part when it clicks on the fishing spot or it finds the fish. i went to codx1's powerfisher but his part didnt work, here it is

    procedure FindFish;
    begin
    repeat
    if FindObj(x,y,'age',FishSpotColor,5)or
    FindObj(x,y,'net',FishSpotColor,5)or
    FindObj(x,y,'poon',FishSpotColor,5)
    then
    MMouse(x,y,0+random(2),0+random(3));
    Mouse(x,y,0,0+random(3),true);
    Wait(FishWait+random(2000));
    DoRandoms;
    HandleWhirlPool;
    until(InvFull);
    FishAmount:= FishAmount + 27;
    end;

    Anyone got any ideas for me?

  2. #2
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    use scar code tags

    i will look at it :s, NEED to go now soz
    ~Hermen

  3. #3
    Join Date
    Sep 2007
    Posts
    31
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    what exacly do u mean by scar code tags? im new to making scripts but i really wanna learn so i dont have to use everyone elses.

  4. #4
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by JuvenileHall View Post
    what exacly do u mean by scar code tags? im new to making scripts but i really wanna learn so i dont have to use everyone elses.
    Scar Code Tags is an option when you reply (advanced), it's this:
    SCAR Code:
    procedure FindFish;
    begin
      repeat
        if FindObj(x,y,'age',FishSpotColor,5)or
           FindObj(x,y,'net',FishSpotColor,5)or
           FindObj(x,y,'poon',FishSpotColor,5)then
           begin//you forgot this ;)
             //MMouse(x,y,0+random(2),0+random(3)); Mouse already includes moving
             Mouse(x,y,0,0+random(3),true);
             Wait(FishWait+random(2000));
             DoRandoms;
             HandleWhirlPool;
      until(InvFull);
      FishAmount:= FishAmount + 27;
    end;
    Your Script Code stays standerdized, comments are green, etc..
    With other words, it makes a lot easier reading the Scar Code, that's why Scar Code Tags have been made

    Now, about your PowerFisher.
    What it does:
    1. If an object is found with uptext (age) and a particular color (FishSpotColor) it will click over there,
    2. Will wait several time of milliseconds (FishWait) with random amount of wait,
    3. Will chck for randoms, Check and when needed handles the whirpool random,
    4. Will increase the integer value of the variable "FishAmount " with 27.

    So basicly you already have clicked the fishing spot..

    I don't say that's enough of code for a PowerFisher, but I answered on your question

    -Tsn.
    [QUOTE=Santa_Clause;277761]I love you too TSN :p[/QUOTE]
    [CENTER][URL="http://www.stats.srl-forums.com/sigs"][IMG]http://www.stats.srl-forums.com/sigs/1324.png[/IMG][/URL][/CENTER]

  5. #5
    Join Date
    Oct 2007
    Posts
    25
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    great explanation

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. PowerFisher 0.03
    By RPS13x in forum OSR Help
    Replies: 10
    Last Post: 03-08-2009, 01:57 AM
  2. Srl 20 Powerfisher
    By jiggypwner in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 08-17-2008, 10:03 PM
  3. powerfisher help!
    By legendaryhero90 in forum OSR Help
    Replies: 5
    Last Post: 02-22-2007, 08:10 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •