Results 1 to 18 of 18

Thread: Bank Procedure

  1. #1
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Bank Procedure

    I was wondering if someone could make a GE Open Bank procedure. Thanks,

    ~Kyle~

    P.S Can a admin or whatever PLEASE change me to Junior Member or Community member??

  2. #2
    Join Date
    Jun 2007
    Location
    Ohio
    Posts
    341
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    what do you mean? just open the bank?

    and are u looking for dtms, color finding, bmps, ? any suggestions on what you want

  3. #3
    Join Date
    Sep 2007
    Posts
    415
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you should already be a junior member, it just takes a while for it to appear, and why don't you make the procedure and show you're serious about scar/srl?
    Quote Originally Posted by That guy that wrote forefeathers
    <munklez>haha im too lazy, girls annoy me
    <munklez> they always wanna like, do stuff
    <munklez> and i just wanna program
    <munklez> and they always take all my money

  4. #4
    Join Date
    Jun 2007
    Location
    Ohio
    Posts
    341
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Drizzt, the reason i have offered my help although both of those may be true is i am on these forums to help other people, not to judge them on whether or not they deserve it. I do it because i hope that they will realize that because i helped them they need to turn it around and help someone else. then it makes a chain

  5. #5
    Join Date
    Jul 2007
    Location
    Missouri
    Posts
    318
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    a bank procedure is pretty easy, i'll help ya out too.

  6. #6
    Join Date
    Nov 2007
    Location
    Chile
    Posts
    1,901
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    FindObjCustom should be fine.

  7. #7
    Join Date
    Aug 2007
    Location
    Georgia, U.S.
    Posts
    890
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I tried making one but the colors of the bankers are the same as everything surrounding them.

  8. #8
    Join Date
    Nov 2007
    Location
    Chile
    Posts
    1,901
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by skilld u View Post
    I tried making one but the colors of the bankers are the same as everything surrounding them.
    You can use:
    SCAR Code:
    If (FindObjCustom(x, y, [BankerColors1,BankerColors2], ['ank', UpText2], Tolerance)) then
    begin
      MMouse(x, y, 4, 4);
      if (IsUpText(UpText)) then
      begin
        Mouse(x, y, 4, 4, False);
        ChooseOption('ank');
      end else
      begin
        Writeln('Bankers not found');
        TerminateScript;
      end;
    end;

    EDIT: and for the jr member, you didnt become jr member when you reached 10 posts/1 week so the only thing is Community Member like me

    EDIT2: Make Tuts and scripts to become Community Member.

  9. #9
    Join Date
    Aug 2007
    Location
    Georgia, U.S.
    Posts
    890
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i had tolerance at 15, i tried it with like 10 different colors but everytime it searched the ground and everything else there.


    you could Try This:
    fill out the banker color and change the tolerance if it still cant find it.

    SCAR Code:
    procedure OpenGEBank;
    var
      BankTPA: TPointArray;
      BankSpot: TPoint;
      Time : integer;
      x, y : integer;
    begin
      MarkTime(Time);
      repeat
        if not LoggedIn then Break;
        FindColorsSpiralTolerance(MSCX,MSCY,BankTPA,{BankerColor},MSX1,MSY1,MSX2,MSY2,30);
        begin
          TreeSpot := MiddleTPA(BankTPA);
          MMouse(BankSPot.X,BankSpot.Y,5,5);
          Wait(50+random(50));
          if IsUpText('alk-to')then
          begin
            GetMousePos(x,y);
            Mouse(x,y,3,3,flag);
            ChooseOption('Bank');
            FFlag(0);
          end;
        end;
      until (BankScreen or (TimeFromMark(time) > 120000));
    end;

  10. #10
    Join Date
    Jul 2007
    Posts
    1,431
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Skilled u, it's not working, you forgot to sort them. It finds middle of everything -.-
    [CENTER][SIZE="4"]Inactive[/SIZE]I forgot my password[/CENTER]

  11. #11
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ok people, i'm serious about scar...i'm pretty good at everything except tpas and walking....So i'm not a leecher...And if i wanted this procedure of course it means i make my own scripts...But i don't know what to make the bmp of... Thanks,

    ~kyle~

  12. #12
    Join Date
    Nov 2007
    Location
    Chile
    Posts
    1,901
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Da 0wner View Post
    ok people, i'm serious about scar...i'm pretty good at everything except tpas and walking....So i'm not a leecher...And if i wanted this procedure of course it means i make my own scripts...But i don't know what to make the bmp of... Thanks,

    ~kyle~
    I have a good tut on BMPs.

  13. #13
    Join Date
    Aug 2007
    Location
    Georgia, U.S.
    Posts
    890
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You shouldn't make a bitmap of the mainscreen because it moves too much. bitmaps are for the mm and the inventory.

  14. #14
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Dude Cazax...I own you at DTMs and BMPs. I just don't know what to make the BMP! Can someone tell me what to make it of and i'll gladly make it myself...Thanks,

    ~Kyle~

  15. #15
    Join Date
    Aug 2007
    Location
    Georgia, U.S.
    Posts
    890
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    to open the bank you don't need a bitmap. you can't use a bitmap on the mainscreen because it moves too. if you are trying to get into the bank you make a DTM of the bankers on the MM.

    http://www.villavu.com/forum/showthread.php?t=19373

  16. #16
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I already know that...But it uses bmps in the regular OpenBankSilent procedures. And if i'm doing a fletcher at the bank you just start there. I already know how to make it get there...Thanks,

    ~Kyle~

  17. #17
    Join Date
    Nov 2007
    Location
    Chile
    Posts
    1,901
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    For finding a GE banker you can use FindObjCustom or TPAs if you know how use em...

  18. #18
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ok yea, I know findonbjcustom but not TPA's.n3ss3s owns everyone at TPA's . But yea, i'm to lazy...Working on my fletcher...So can someone PLEASE spare some time and make one?? Thanks,

    ~Kyle~

    P.s Cazax why you never on msn. .

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Bank Procedure (quick question)
    By Macros in forum OSR Help
    Replies: 3
    Last Post: 11-09-2008, 09:03 PM
  2. Bank procedure
    By Illkillutill in forum OSR Help
    Replies: 4
    Last Post: 01-24-2008, 12:19 PM
  3. Procedure TypeSendRandom & Procedure AutoResponder!
    By Ultra in forum Research & Development Lounge
    Replies: 12
    Last Post: 01-08-2008, 07:04 PM
  4. Read my bank procedure
    By me_ntal in forum OSR Help
    Replies: 2
    Last Post: 06-03-2007, 03:00 PM
  5. What Is The Best Bank Opening Function/Procedure?
    By ronny.m.p in forum OSR Help
    Replies: 15
    Last Post: 04-10-2007, 12:01 AM

Posting Permissions

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