Results 1 to 16 of 16

Thread: stronghold of security

  1. #1
    Join Date
    Aug 2007
    Location
    in a random little world
    Posts
    5,778
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

  2. #2
    Join Date
    Sep 2008
    Location
    Not here.
    Posts
    5,422
    Mentioned
    13 Post(s)
    Quoted
    242 Post(s)

    Default

    read the question(with keywords), then click the answer with keywords, or even mousebox because i don't think they change spots.

  3. #3
    Join Date
    Dec 2007
    Posts
    2,112
    Mentioned
    71 Post(s)
    Quoted
    580 Post(s)

    Default

    findtext
    Edit : The attached File Is all the questions (Incase u dont know them)
    Last edited by Kasi; 05-22-2009 at 03:35 AM.

  4. #4
    Join Date
    Dec 2007
    Location
    192.168.1.73
    Posts
    2,439
    Mentioned
    6 Post(s)
    Quoted
    119 Post(s)

    Default

    SCAR Code:
    function FindText(var cx, cy: Integer; txt: String; font, xs, ys, xe, ye: Integer): Boolean;

    Then do one of those for every possible question, and MouseBox the correct one.

  5. #5
    Join Date
    Aug 2007
    Location
    in a random little world
    Posts
    5,778
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

  6. #6
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default

    From what I remember from playing the game, there aren't that many.

    That was month's ago though.

  7. #7
    Join Date
    Sep 2008
    Location
    Not here.
    Posts
    5,422
    Mentioned
    13 Post(s)
    Quoted
    242 Post(s)

    Default

    didn't pur3b100d just post them?

  8. #8
    Join Date
    Aug 2007
    Location
    in a random little world
    Posts
    5,778
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Quote Originally Posted by pur3b100d View Post
    findtext
    Edit : The attached File Is all the questions (Incase u dont know them)
    ahhh
    thanks
    rep++

    ~shut

    EDIT:
    Quote Originally Posted by mormonman View Post
    didn't pur3b100d just post them?
    i posted my post before he attached them
    Last edited by Shuttleu; 05-22-2009 at 03:42 AM.

  9. #9
    Join Date
    Dec 2007
    Posts
    2,112
    Mentioned
    71 Post(s)
    Quoted
    580 Post(s)

    Default

    yer put em in TStringarrays and do like a for I := 0 to hight(questtions....

  10. #10
    Join Date
    Dec 2007
    Location
    192.168.1.73
    Posts
    2,439
    Mentioned
    6 Post(s)
    Quoted
    119 Post(s)

    Default

    Quote Originally Posted by Shuttleu View Post
    so i would have to find every question and answer possible -_-'

    ~shut
    Not really, just make a TStringArray, then do a for to do loop for it all:

    SCAR Code:
    Procedure Question;
    Var
    i: Integer;
    TSAQue, TSAAns: TStringArray;
    Begin
      TSAQue := ['Add all of', 'the questions', 'to this array'];
      TSAAns := ['And now', 'the answers', 'in here']; //make sure these match the question that is the same place in the array above.
      For i := 0 to High(TSAQue) do
      Begin
        If FindText(x, y, TSAQue[i], NPCChars, MCX1, MCY1, MCX2, MCY2) then
          If FindText(x, y, TSAAns[i], NPCChars, MCX1, MCY1, MCX2, MCY2) then
            Mouse(x, y, 3, 3, True);
      end;
    end;

  11. #11
    Join Date
    Aug 2007
    Location
    in a random little world
    Posts
    5,778
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

  12. #12
    Join Date
    Dec 2007
    Posts
    2,112
    Mentioned
    71 Post(s)
    Quoted
    580 Post(s)

    Default

    SCAR Code:
    Function SolveSOS : Boolean;
    Var
      Questions, Answers : TStringArray;
      Cx, Cy : Integer;
    Begin
      Questions := ['A website claims that they can make me a player moderator if I give them my password. What should I do?',
                    'Can I leave my account logged in while I''m out of the room? ',
                    'My friend uses this great add-on program he got from a website, should I? ',
                    'My friend asks me for my password so that he can do a difficult quest for me. ',
                    'Recovery answers should be...',
                    'What are your recovery questions used for?',
                    'What is a good example of a Bank PIN?',
                    'What do you do if someone asks you for your password or recoveries to make you a member for free?',
                    'What do you do if someone asks you for your password or recoveries to make you a player moderator?',
                    'What do you do if someone tells you that you have won the RuneScape lottery and asks you for your password and recoveries to award your prize?',
                    'What do I do if I think I have a keylogger or a virus?',
                    'What do I do if a moderator asks me for my account details?',
                    'What should I do if I think someone knows my recoveries?',
                    'Where can I find cheats for RuneScape?',
                    'Where should I enter my password for RuneScape?',
                    'Will Jagex block me for saying my PIN ingame?',
                    'Who can I give my password to?',
                    'Why do I need to type in recovery questions?'];
      Answers   := ['Don''t tell them anything and inform Jagex through the game website.',
                    'No.',
                    'No, it might steal my password.',
                    'Don''t give him my password.',
                    'Memorable.',
                    'To recover my account if i don''t remember my password. ',
                    'The birthday of a famous person or event.',
                    'Don''t tell them anything and click the Report Abuse button.',
                    'Don''t tell them anything and click the Report Abuse button.',
                    'Don''t tell them anything and click the Report Abuse button.',
                    'Virus scan my computer then change my password and recoveries.',
                    'Politely tell them no then use the report abuse button.',
                    'Use the recover a lost password section.',
                    'Nowhere.',
                    'Only on the RuneScape or FunOrb website',
                    'No.',
                    'Nobody.',
                    'To help me recover my password if I forget it or if it is stolen.'];
      For I := 0 To High(Questions) Do
      Begin
        If FindText(Cx, Cy, Questions[I], SmallChars, MCX1, MCY1, MCX2, MCY2) Then
          If FindText(Cx, Cy, Answers[I], SmallChars, MCX1, MCY1, MCX2, MCY2) Then
          Begin
            Mouse(Cx, Cy, 50, 3, True);
            ClickToContinue;
          End;
      End;
    End;

    Edit : The Chars used in findtext might not be right i guessed
    Last edited by Kasi; 05-22-2009 at 04:01 AM.

  13. #13
    Join Date
    Aug 2007
    Location
    in a random little world
    Posts
    5,778
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

  14. #14
    Join Date
    Dec 2007
    Posts
    2,112
    Mentioned
    71 Post(s)
    Quoted
    580 Post(s)

    Default

    do ya just wanna find the coords of it?

  15. #15
    Join Date
    Dec 2007
    Location
    192.168.1.73
    Posts
    2,439
    Mentioned
    6 Post(s)
    Quoted
    119 Post(s)

    Default

    I wouldn't use ObjectToTile, I just find the tile where the object is, and mouse over the tile (making sure the door is between you and the tile), then IsUpText to make sure, and then open it.

  16. #16
    Join Date
    Dec 2007
    Posts
    2,112
    Mentioned
    71 Post(s)
    Quoted
    580 Post(s)

    Default

    if its just the coords then
    SCAR Code:
    Function Finddoor : Boolean;
    Var
      Temp : TPoint;
    Begin
      If FindObject(Temp ,{id Here}) Then
      Begin
        Temp := TileToMS(Temp, 0);
        Mouse(Temp.x, Temp.y, 2, 2, False);
        Wait(250 + Random(250));
        Result := R_ChooseOption('pen');
        Wait(250 + Random(250));
      End;
    End;

    should work if your just trying to open it

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
  •