Results 1 to 5 of 5

Thread: better procedure?

  1. #1
    Join Date
    Sep 2006
    Location
    West U.S.
    Posts
    2,172
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default better procedure?

    do anyone think this is a good fishing procedure or do they think it needs more work...
    if so why and can you help me with it??

    SCAR Code:
    Procedure FindFishingSpots;
      begin
        if FindDtmIn(x1,y1,FishingSpots,10,10,MSX2,MSY2)then
          begin
           repeat
            MMouse(x1,y1,2,2)
            wait(1000+(200))
            if(IsUpText('age')) or (IsUpText('et')) then
              Mouse(x1,y1,2,2,false)
              wait(500 + random(300))
              ChooseOption(x,y,'Cage')
              Wait(WaitTime*1000+random(500))
              CustomAntiban;
                if(IsUpText('et')) then
                  Mouse(x1,y1,2,2,false)
                  wait(500 + random(300))
                  ChooseOption(x,y,'Cancel')
                  CustomAntiban;
           until (InvFull)
          end;
    end;


    its for my lobster fisher btw

    They are sisters...
    Runescape Classic

  2. #2
    Join Date
    Oct 2006
    Location
    New Zealand
    Posts
    423
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    its good, why not have a look at wizzups mining proc and get it to catch more when its done instead of timed way

  3. #3
    Join Date
    Sep 2006
    Location
    West U.S.
    Posts
    2,172
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Quote Originally Posted by meanage View Post
    its good, why not have a look at wizzups mining proc and get it to catch more when its done instead of timed way
    ok thanks meanage

    anyone else's opionion is welcomed

    They are sisters...
    Runescape Classic

  4. #4
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    After those ifs you need begins and ends. If you keep it like this, it will only do the first thing after the if.



    SCAR Code:
    Procedure FindFishingSpots;
    begin
      if FindDtmIn(x1,y1,FishingSpots,10,10,MSX2,MSY2)then
      begin
        repeat
          MMouse(x1,y1,2,2)
          wait(1000+(200))
          if(IsUpText('age')) or (IsUpText('et')) then
          begin
            Mouse(x1,y1,2,2,false)
            wait(500 + random(300))
            ChooseOption(x,y,'Cage')
            Wait(WaitTime*1000+random(500))
          end;
          CustomAntiban;
          if(IsUpText('et')) then
          begin
            Mouse(x1,y1,2,2,false)
            wait(500 + random(300))
            ChooseOption(x,y,'Cancel')
            CustomAntiban;
          end;
        until (InvFull)
      end;
    end;
    Like that.

  5. #5
    Join Date
    Sep 2006
    Location
    West U.S.
    Posts
    2,172
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    i see thanks!

    They are sisters...
    Runescape Classic

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Procedure?
    By shadowrec0n in forum OSR Help
    Replies: 3
    Last Post: 02-11-2008, 09:04 PM
  2. Procedure TypeSendRandom & Procedure AutoResponder!
    By Ultra in forum Research & Development Lounge
    Replies: 12
    Last Post: 01-08-2008, 07:04 PM
  3. Help with Procedure
    By Esteban in forum OSR Help
    Replies: 8
    Last Post: 07-06-2007, 03:45 AM
  4. Replies: 8
    Last Post: 05-24-2007, 11:57 PM
  5. Procedure that calls random procedure?
    By Secet in forum OSR Help
    Replies: 2
    Last Post: 03-03-2007, 03:56 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
  •