Results 1 to 7 of 7

Thread: My script wont bank please help

  1. #1
    Join Date
    Dec 2007
    Posts
    108
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default My script wont bank please help

    This is the part of my script it opens the bank but wont bank


    SCAR Code:
    SymbolAccuracy := 0.4;
      if (FindSymbol(x, y, 'Bank')) then
        Mouse(x, y, 5, 5, True);
        FFlag(0); ;
        MakeCompass('S');
         SetAngle(false);
         OpenBankQuiet('veb');
          Deposit(2,27,2)
          Wait(800 + Random(200));
          CloseBank;
          Banked := Banked + 1;
        end;

  2. #2
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Try OpenBank, not OpenBankQuiet


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  3. #3
    Join Date
    Dec 2007
    Posts
    108
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    when i try open bank it says

    Line 346: [Error] (13167:16): Invalid number of parameters in script C:\Program Files\SCAR 3.15\Scripts\varrock east oak chopper and banker.scar

  4. #4
    Join Date
    Feb 2007
    Location
    Alberta,Canada
    Posts
    2,358
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hmmm maybe try a backup of DTM banking or sumthing, or try openbankfast, or instead of
    SCAR Code:
    deposit(2,27,2);
    try
    SCAR Code:
    Deposit(2, 28, true);
    just a suggestion,
    -blumblebee

    Edit: and maybe don't setangle(false); it would make it easier to find the bank if the angle was at it's highest(I think)
    “Ignorance, the root and the stem of every evil.”

  5. #5
    Join Date
    Feb 2007
    Location
    Estonia.
    Posts
    1,938
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    SCAR Code:
    FFlag(0); ;
    Maybe remove one semicolon or you mistyped ?
    ~Eerik~

  6. #6
    Join Date
    Jun 2008
    Location
    San Diego, California
    Posts
    276
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Try this
    SCAR Code:
    begin
      SymbolAccuracy := 0.4;
      if (FindSymbol(x, y, 'Bank')) then
      begin
        Mouse(x, y, 5, 5, True);
        FFlag(0); ;
        MakeCompass('N');
        SetAngle(True);
        OpenBankQuiet('veb');
        Deposit(2,27,2)
        Wait(800 + Random(200));
        CloseBank;
        Banked := Banked + 1;
      end Else
      begin
        FindBank('veb');//find bank on mini-map and opens it
        If PinScreen then InPin('0000');//your pin in here if any
        Wait(500);
        Deposit(2,27,2)
        Wait(800 + Random(200));
        CloseBank;
        Banked := Banked + 1;
      end;
    end;
    Current Project: All In 1 Falador Script - 20% DONE

  7. #7
    Join Date
    Dec 2007
    Posts
    108
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks to everyone for responding I found the problem I changed computers so I forgot to install srl sub

    Thanks

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. This script wont run.
    By Ogre in forum OSR Help
    Replies: 7
    Last Post: 03-09-2009, 12:56 AM
  2. Ultra Cut n Bank wont click...
    By ZomgCollin in forum OSR Help
    Replies: 2
    Last Post: 10-31-2008, 03:37 AM
  3. Replies: 2
    Last Post: 01-21-2008, 02:27 PM
  4. Script wont compile. again. :(
    By Johura in forum OSR Help
    Replies: 2
    Last Post: 04-02-2007, 12:20 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
  •