Results 1 to 7 of 7

Thread: Bank.Scar, no edgeville bank?

  1. #1
    Join Date
    May 2008
    Posts
    35
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Bank.Scar, no edgeville bank?

    I was looking in the srl scripts for a bank opener and i found a couple of procedures, many of them (if not all) say 'any given bank in the free world.' but, there is no edgeville bank in ANY of the procedures. why didnt they put the edgeville bank in there?

    SRL/SRL/Core/Bank.Scar [to take a look for yourself]

  2. #2
    Join Date
    May 2007
    Location
    England
    Posts
    4,140
    Mentioned
    11 Post(s)
    Quoted
    266 Post(s)

    Default

    SCAR Code:
    {*******************************************************************************
    function OpenBankQuiet(WhichBank: string): Boolean;
    By: WT-Fakawi and modified by Ron
    Description: Opens any given bank in the free world using
    FindDeformedBitmapToleranceIn. Avoids strange mouse movements. Will cause
    significant lag (approx. 1 second), but finds the bank with one click.

    Valid arguments are:
    'feb' (Falador East Bank)
    'fwb' (Falador West Bank)
    'veb' (Varrock East Bank)
    'vwb' (Varrock West Bank)
    'db'  (Draynor Bank)
    'eb'  (Edgeville Bank)                       **Here**
    'akb' (Al-Kharid Bank)

    But I see what you mean that they say any given bank, but Edgeville, apart from OpenBankQuiet.

    EDIT: Hang on...OpenBankGlass has Edgeville, but it is not listed...So does OpenBankFast...And OpenBank...They all do apart from FindBank.
    Last edited by Rich; 08-29-2009 at 10:46 PM.
    <3

    Quote Originally Posted by Eminem
    I don't care if you're black, white, straight, bisexual, gay, lesbian, short, tall, fat, skinny, rich or poor. If you're nice to me, I'll be nice to you. Simple as that.

  3. #3
    Join Date
    May 2008
    Posts
    35
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hmm, that seems to be the only one with edgeville, correct? and that one lags

    EDIT: Open bank fast also has edgeville, yet it is not stated in the comments
    SCAR Code:
    {*******************************************************************************
    function OpenBankFast(Location: String): Boolean;
    By: Wizzup? and Nielsie95 updated by N1ke!
    Description: Opens the bank.
    Valid arguments are:
    'feb', 'falador east bank'
    'fwb', 'falador west bank'
    'veb', 'varrock east bank'
    'vwb', 'varrock west bank'
    'db' , 'draynor bank'
    'akb', 'al-kharid bank'
    'ctb', 'catherby bank'
    'clt', 'camelot bank'
    'nab', 'north ardougne bank'
    'sab', 'south ardougne bank'
    'ynb', 'yanille bank'
    'ngb', 'north gnome bank'
    'sgb', 'south gnome bank'
    'wgb', 'warrior guild bank'
    'fgb', 'fishing guild bank'
    *******************************************************************************}

    SCAR Code:
    begin
      Wait(400);
      case LowerCase(Location) of
        'akb', 'al kharid': Info := [MSCX, MSCY, 7969203, 25, 1];
        'lb', 'lumbridge': Info := [MSCX, MSCY, 4807788, 10, 1];
        'veb', 'varrock east': Info := [MSCX, MSCY, 2971236, 10, 1];
        'vwb', 'varrock west': Info := [270, 270, 5689318, 25, 1];
        'feb', 'falador east': Info := [MSCX, MSCY + 50, 4612728, 14, 1];
        'fwb', 'falador west': Info := [MSCY, MSCY, 4612728, 14, 1];
        'db', 'draynor': Info := [MSCX, MSCY, 2512235, 4, 2];
        'eb', 'edgeville bank': Info := [MSCX + 50, MSCY, 3230295, 9, 2];// here
        'ctb', 'catherby bank': Info := [MSCX, MSCY, 3239049, 8, 2];
        'clt', 'camelot bank': Info := [MSCX, MSCY, 7636882, 5, 2];
        'nab', 'north ardougne bank': Info := [MSCX, MSCY, 4084572, 5, 2];
        'sab', 'south ardougne bank': Info := [MSCX, MSCY, 4084572, 5, 2];
        'ynb', 'yanille bank': Info := [MSCX, MSCY, 3239049, 7, 2];
        'ngb', 'north gnome bank': Info := [MSCX, MSCY, 3239049, 7, 2];
        'sgb', 'south gnome bank': Info := [MSCX, MSCY, 3239049, 7, 2];
        'wgb', 'warrior guild bank': Info := [MSCX, MSCY, 2578286, 7, 2];
        'fgb', 'fishing guild bank': Info := [MSCX, MSCY, 2908796, 10, 2];
    Last edited by U.S.mann; 08-29-2009 at 10:48 PM.

  4. #4
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Use OpenBankFast('eb');.

  5. #5
    Join Date
    May 2007
    Location
    England
    Posts
    4,140
    Mentioned
    11 Post(s)
    Quoted
    266 Post(s)

    Default

    Check my post, I edited it. Also, can I borrow your account - only if it's in Edgeville - so I can make a DTM of the Edgevill bank for FindBank. It'll only be a minute max.

    Thanks,
    Richard.

    EDIT: Nevermind, Ian let me use his.
    Last edited by Rich; 08-29-2009 at 10:54 PM.
    <3

    Quote Originally Posted by Eminem
    I don't care if you're black, white, straight, bisexual, gay, lesbian, short, tall, fat, skinny, rich or poor. If you're nice to me, I'll be nice to you. Simple as that.

  6. #6
    Join Date
    May 2008
    Posts
    35
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    still need the account? ill pm u one of my throwaway accs

  7. #7
    Join Date
    May 2007
    Location
    England
    Posts
    4,140
    Mentioned
    11 Post(s)
    Quoted
    266 Post(s)

    Default

    No thanks. Ian lent me his account. Just in case you want to know, here is the thread in the Public SvN section.

    Richard
    <3

    Quote Originally Posted by Eminem
    I don't care if you're black, white, straight, bisexual, gay, lesbian, short, tall, fat, skinny, rich or poor. If you're nice to me, I'll be nice to you. Simple as that.

Thread Information

Users Browsing this Thread

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

Posting Permissions

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