Results 1 to 19 of 19

Thread: This must be added in SRL!

  1. #1
    Join Date
    Jun 2007
    Location
    Mianus
    Posts
    863
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default This must be added in SRL!

    Ok so i have been hacked every month and its now 3 times so 3 months and i bet its someone that thinks its funny so i put an pin on my main and there dosent exist anything to work when u are waiting for ur pin if u dont understand ill say it again... When u set a PIN u get a warning every time u try to open the bank and theres no function that presses yes continue... heres a pic



    so is this added to SRL or does it have to?

  2. #2
    Join Date
    Oct 2006
    Posts
    585
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i think it should be implemented as well...

    Quote Originally Posted by YoHoJo View Post
    I like hentai.

  3. #3
    Join Date
    Oct 2006
    Location
    MI USA
    Posts
    3,166
    Mentioned
    6 Post(s)
    Quoted
    11 Post(s)

    Default

    {************************************************* ******************************
    function InPin(pin: String): Boolean;
    by: RSN / Starblaster100
    Description: Puts in bank pin. Results True if XXX
    ************************************************** *****************************}

    function InPin(pin: string): Boolean;
    var
    iNumber: Integer;
    begin
    if (PinScreen) then
    begin
    Result := True;
    for iNumber := 1 to Length(pin) do
    begin
    MMouse(395, 175, 10, 10);
    Wait(200 + Random(200));
    ClickText(pin[iNumber], upchars, 1, 1, 512, 336, True);
    Wait(500 + Random(500));
    end;
    repeat
    Wait(100);
    until BankScreen or not LoggedIn;
    end;
    end;
    Never hurts to search before posting

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

    Default

    i said its not the PIN screen! its a warning ...

  5. #5
    Join Date
    Jun 2007
    Posts
    246
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I had one of those so i pout it in my script i think this is the one i use..
    SCAR Code:
    function WaitingPin: boolean;
    var
    x,y: integer;
    begin
      if not (LoggedIn) then Exit;
      if (GetColor(297, 288) = 0) and (GetColor(69, 47) = 0) then
      begin
        Wait(500 + Random(400));
        MMouse(127, 142, 200, 3);
        Wait(70 + Random(30));
        if IsUpText('k') then
        begin
          GetMousePos(x, y);
          Mouse(X, y, 0, 0, True);
        end else Mouse(127, 142, 200, 3, True);
        Result := True;
      end;
    end;
    should work...been about a month since i used it so itll work unless jagex updated something

  6. #6
    Join Date
    Jun 2006
    Location
    The Netherlands
    Posts
    2,984
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by RAM View Post
    Never hurts to search before posting
    Doesn't hurt to read a thread too

    I do agree with you however...

    But I'm a bit busy atm, so would another developer mind doing it ?
    Administrator's Warning:


  7. #7
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    example

    SCAR Code:
    Procedure Warning;
    begin
      if findbitmap(blablablabla) then mouse(x,y,0,0,true) else inpin;
    end;
    ~Hermen

  8. #8
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,692
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    Quote Originally Posted by Sumilion View Post
    Doesn't hurt to read a thread too

    I do agree with you however...

    But I'm a bit busy atm, so would another developer mind doing it ?
    I see no use in it.



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

  9. #9
    Join Date
    Jun 2007
    Location
    La Mirada, CA
    Posts
    2,484
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    i agree w/ wizzup? just use a non-banking script for the time being or just plain out dont auto for 7 days....but then again i agree too, it wouldnt hurt to have it

    "Failure is the opportunity to begin again more intelligently" (Henry Ford)


  10. #10
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    6,136
    Mentioned
    28 Post(s)
    Quoted
    17 Post(s)

    Default

    Quote Originally Posted by hermpie View Post
    example

    SCAR Code:
    Procedure Warning;
    begin
      if findbitmap(blablablabla) then mouse(x,y,0,0,true) else inpin;
    end;
    If FindNPCChatText(''I asked') then .....
    If FindNPCChatText(''I didn't ask') then .....

    maybe simpler
    SRL is a Library of routines made by the SRL community written for the Program Simba.
    We produce Scripts for the game Runescape.

  11. #11
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    w/e, fakawi is always right,
    ~Hermen

  12. #12
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    so would another developer mind doing it ?
    Sometimes a private detective can be faster than the police force:

    SCAR Code:
    Procedure HandlePinConfirmation;
    Var
      X, Y: Integer;
    Begin
      If Not LoggedIn Then Exit;
      While FindText(X, Y, 'another', NPCChars, 40, 46, 465, 95) Do
      Begin
        Mouse(157 + Random(30), 143, 8, 2, True);
        Wait(1000 + Random(350));
      End;
    End;

    Tested it....

    EDIT: Oh crap, gotta cancel the pin..

  13. #13
    Join Date
    Oct 2007
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Just don't auto until you have changed your pin, i can't see many people needing to use this...

  14. #14
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    but its handy
    ~Hermen

  15. #15
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    Just don't auto until you have changed your pin, i can't see many people needing to use this...

    Or just read the post above you?

    Nothing hard, just add HandlePinConfirmation after the proc that opens bank...

  16. #16
    Join Date
    Jun 2007
    Location
    Mianus
    Posts
    863
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thx n3 ill see if it works...

  17. #17
    Join Date
    Oct 2006
    Location
    MI USA
    Posts
    3,166
    Mentioned
    6 Post(s)
    Quoted
    11 Post(s)

    Default

    Quote Originally Posted by Sumilion View Post
    Doesn't hurt to read a thread too
    Considering he even repeated himself twice

  18. #18
    Join Date
    Apr 2007
    Location
    UK
    Posts
    2,295
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Either way, it isnt going to stop you getting hacked. lol

    Rogeruk's Al-Kharid Tanner V1.1 [Released]
    Rogeruk's Barbarian Crafter [Coming Soon]
    Rogeruk's Guild Fisher [Coming Soon]
    !! - Taking Requests - !!

  19. #19
    Join Date
    Jun 2007
    Location
    Mianus
    Posts
    863
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Rogeruk why? ill be putting in my stuff in bank every time i log out ( ye i know its sad) and the hacker dosent know my PIN

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Some guy from Jagex added my MSN?
    By solarwind in forum News and General
    Replies: 10
    Last Post: 01-05-2007, 12:12 PM
  2. New Forums Added.
    By WT-Fakawi in forum SRL Site Discussion
    Replies: 4
    Last Post: 11-09-2006, 12:41 AM
  3. Flash chat added.
    By Dankness in forum SRL Site Discussion
    Replies: 11
    Last Post: 09-18-2006, 04:33 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
  •