Results 1 to 8 of 8

Thread: Fishing Guild Banking Help

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

    Default Fishing Guild Banking Help

    I need help writing the banking part of my fishing guild fisher. I think if I can get the bank walk and banking procedures, then I can post my guild fisher for everyone.
    Thanks for your Help,
    Korn

  2. #2
    Join Date
    Aug 2007
    Posts
    1,404
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    I'm not sure if this will work. It's the best I could do.
    You need to fill in some stuff in BankOpener;
    SCAR Code:
    Function BankOpener(Tol: Integer): Boolean;
    var
     a,b: Integer;
    begin
      if(FindColorSpiralTolerance(a,b,BankColor,x1,y1,x2,y2,Tol))then
      begin
        MMouse(a,b,5,5)
        Wait(200+random(200))
        if(IsUpText('ank'))then
        begin
          GetMousePos(a,b)
          Mouse(a,b,0,0,false)
          Wait(100+random(200))
          Writeln('Bank found')
          if(ChooseOption('Use-quickly'))then
          begin
            Result:= True;
            Writeln('Bank opened')
          end;
        end;
      end;
    end;

    Procedure GetBankOpen;
    var
     I: Integer;
     B: Boolean;
    begin
      I:= 0;
      repeat
        I:= I + 1;
        if(BankOpener(5+I))then
        begin
          Break;
        end else
        begin
          Writeln('Did not find bank')
        end;
      until(I = 10)
    end;

    -Knives

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

    Default

    Thanks man,
    Ill try putting it in there and testing if it works out.
    I might tweak it a little bit, and ill put you in the script.
    Thanks,
    Korn

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

    Default

    wow.. cool.. im going to work this out.. thx .

  5. #5
    Join Date
    Jan 2007
    Posts
    31
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Alright man well help if you can.

  6. #6
    Join Date
    May 2007
    Location
    NSW, Australia
    Posts
    2,823
    Mentioned
    3 Post(s)
    Quoted
    25 Post(s)

    Default

    Nice i must say, for the banking part, you should use something like this:

    SCAR Code:
    function OpenBank12: Boolean; // I edited the procedure from SRL
    var
    x, y,c: Integer;
    counter, BankCounter:integer;
    begin
      if (FindObjCustom(x, y, ['ank', 'Bank booth'], [3626593], 5)) then
      begin
        Mouse(x, y, 1, 1, False);
        if (ChooseOption('quickly')) then
        begin
          FFlag(0);
          repeat
            Wait(100);
            Inc(c);
          until (BankScreen) or (c >= 50);
        end;
      end;
      Result := BankScreen;
      if BankScreen then
      begin
        wait(200);
        FixBank;
     if (FindDTM(Lobster, x, y, 568, 209, 742, 460)) then
        begin
          Mouse(x, y, 3, 3, false);
          ChooseOption('All');
          Result := True;
        end;
        if(FindDTM(Tuna, x, y, 568, 209, 742, 460))then
        begin
          Mouse(x, y, 3, 3, false);
          ChooseOption('All');
          Result := True;
        end;
        if(FindDTM(SwordFish, x, y, 568, 209, 742, 460))then
        begin
          Mouse(x, y, 3, 3, false);
          ChooseOption('All');
          Result := True;
        end;
        Exit;
      end else
        if not BankScreen then
        begin
          Result := False;
          Writeln('Player coulnt find the bank');
          Players[CurrentPlayer].Loc := 'Couldnt find the bank, Trying to get back.';
          Players[CurrentPlayer].Active := False;
          Logout;
          Exit;
        end;
    end;
    This script isnt for SRL 4, did you make this?

  7. #7
    Join Date
    Jan 2007
    Posts
    31
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I have not set up SRL 4 for the script yet, i am not very far along on it. After i get all basic functions and procedures together i will add the SRL stuff.

  8. #8
    Join Date
    Dec 2008
    Posts
    80
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    theres some problems for me T.T

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. Can't create a fishing guild DTM! Help please!
    By pianoman933 in forum OSR Help
    Replies: 5
    Last Post: 11-28-2008, 10:46 PM
  3. need help with fishing guild script
    By elemental516 in forum OSR Help
    Replies: 4
    Last Post: 10-15-2008, 06:39 AM
  4. Fishing Guild Bank Help
    By kornthebldgd in forum RS3 Outdated / Broken Scripts
    Replies: 0
    Last Post: 09-20-2007, 10:34 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
  •