Results 1 to 5 of 5

Thread: Grand Exchange Banking

  1. #1
    Join Date
    Dec 2006
    Location
    Canada, BC
    Posts
    728
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Grand Exchange Banking

    ok so, im using the grand exchange bank and i need to be able to locate and walk towards it on the map, (comeing from the east direction), aswell as a way to open the bank (im thinking useing TPA to find the banker but if any of you have a better way please share.)

    now im using a DDTM right now of the yellow dots, the only problem is they move about and it dosnt catch the GE on the map like 90% of the time.. soo idk others sudgested DTM's but i havent been able to get it right. am i maby setting up the DDTM wrong or doing tolerance wrong? =o
    Lance. Da. Pants.

  2. #2
    Join Date
    Jan 2008
    Location
    Ontario, Canada
    Posts
    7,805
    Mentioned
    5 Post(s)
    Quoted
    3 Post(s)

    Default

    You using DTMRotated?
    Writing an SRL Member Application | [Updated] Pascal Scripting Statements
    My GitHub

    Progress Report:
    13:46 <@BenLand100> <SourceCode> @BenLand100: what you have just said shows you 
                        have serious physchological problems
    13:46 <@BenLand100> HE GETS IT!
    13:46 <@BenLand100> HE FINALLY GETS IT!!!!1

  3. #3
    Join Date
    Feb 2009
    Posts
    1,447
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Here is a good banking procedure that I use. The banking procedures from srl and reflection dosnt work 100% of the time so I made this and it works better.
    SCAR Code:
    {.include srl/srl/reflection/Reflection.scar}

    var
    x,y : Integer;
    Banker : array of TNPC;

    Function FindBanker : TPoint;
    Begin
        Banker := SortNPCs(GetNPCsByName('Banker'));
        Result := Banker[0].MS;
        Wait(500)
    End;

    Function TalkToBanker : boolean;
    begin
    Mouse(FindBanker.x, FindBanker.y, 0, 0, False);
    if ChooseOption('Talk-to') then Result := true;
    end;

    Procedure OpenBankTRiLeZ;
    begin
    Status('Finding Banker');
    repeat
    if TalkToBanker then begin
    Wait(1500)
    Mouse(307,456,0,0,true);
    Wait(400)
    Mouse(266,391,0,0,true);
    Wait(700)
    end;
    Wait(100)
    until PinScreen or BankScreen;
    end;
    And that is my banking procedure (just opens the bank) and the vars and includes you need fore it.

  4. #4
    Join Date
    Dec 2006
    Location
    Canada, BC
    Posts
    728
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nava2 yes i am useing DTMRotated, does it still work for a DDTM? hmm maby i should set my tolerance higher for it...? its at 30 now i think.
    and Trilez sorry im wanting to use this script for srl membership and im pretty sure i wont be accepted if i use reflection haha. and also i dont know how to use reflection, id rather just stick with what i know.

    NVM i got the DDTM to work very nicely now all i need is a home made TPA to open the bank. i realy suck at them could anyone maby point me to a realy good TPA tutorial that will explain everything i need to acomplish such a task?
    Last edited by Lance; 03-24-2009 at 07:00 AM.
    Lance. Da. Pants.

  5. #5
    Join Date
    Feb 2007
    Location
    Access Violation at 0x00000000
    Posts
    2,865
    Mentioned
    3 Post(s)
    Quoted
    18 Post(s)

    Default

    Quote Originally Posted by TRiLeZ View Post
    Here is a good banking procedure that I use. The banking procedures from srl and reflection dosnt work 100% of the time so I made this and it works better.
    SCAR Code:
    {.include srl/srl/reflection/Reflection.scar}

    var
    x,y : Integer;
    Banker : array of TNPC;

    Function FindBanker : TPoint;
    Begin
        Banker := SortNPCs(GetNPCsByName('Banker'));
        Result := Banker[0].MS;
        Wait(500)
    End;

    Function TalkToBanker : boolean;
    begin
    Mouse(FindBanker.x, FindBanker.y, 0, 0, False);
    if ChooseOption('Talk-to') then Result := true;
    end;

    Procedure OpenBankTRiLeZ;
    begin
    Status('Finding Banker');
    repeat
    if TalkToBanker then begin
    Wait(1500)
    Mouse(307,456,0,0,true);
    Wait(400)
    Mouse(266,391,0,0,true);
    Wait(700)
    end;
    Wait(100)
    until PinScreen or BankScreen;
    end;
    And that is my banking procedure (just opens the bank) and the vars and includes you need fore it.
    Why won't you just do right click > Bank ?
    Maybe ChooseOption will glitch (because of "Bank Banker", two times "Bank"), but you can just make a simple FindTextTpaEx or something for it.

    I'd use TPA's imo.
    http://www.villavu.com/forum/showthread.php?t=42428 < That tut cleared TPA's all out for me!
    Ce ne sont que des gueux


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
  •