Results 1 to 9 of 9

Thread: AutoResponder...

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

    Default AutoResponder...

    Im memb and id like a auto responder that will work when i chop so i dont have to do anything else then click and id like the auto responder in a whole script... thx -Yanix

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

    Default

    ehm..

    look in the flag chat and in the text .scar in the srl include you will find somthing about it
    ~Hermen

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

    Default

    No nothing...

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

    Default

    dude somthing with if findchattext('hi') then typesynd somthing like that.
    ~Hermen

  5. #5
    Join Date
    Jul 2007
    Location
    Right now? Chair.
    Posts
    8,488
    Mentioned
    3 Post(s)
    Quoted
    12 Post(s)

    Default

    I pmed you, add me n let's talk

    I & I know Zion. It is in the spirit, body and mind of every one of us
    RMouse(obj: TMSIObject): boolean;

  6. #6
    Join Date
    May 2007
    Location
    Netherlands, Amersfoort
    Posts
    2,701
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    i made one:

    it's looking in the last 2 line's for text to respond to. if you use it don't forget to credit me ^^

    SCAR Code:
    Function AutoRespondByRick (FindText, SayRandomText1, SayRandomText2, SayRandomText3 : string):Boolean;
    var
      textx, texty: Integer;
      TextSayd  : String;
      TextFound : String;
    begin
      if (not (IsTextInAreaEx(8, 428, 291, 461, textx, texty, FindText, 12, smallchars, False, True, 0, 1, 16711680))) then
      begin
        exit;
      end else
      begin
        Result := True;
        Case Random (3) of
          0: begin
               Typesend(SayRandomText1);
               TextSayd := SayRandomText1
             end;
          1: begin
               Typesend(SayRandomText2);
               TextSayd := SayRandomText2
             end;
          2: begin
               Typesend(SayRandomText3);
               TextSayd := SayRandomText3
             end;
        end;
        TextFound := FindText
        WriteLn('- - - Auto Respond By MasterKill - - -');
        WriteLn('- MrX: ' + TextFound);
        WriteLn('- ' + Players[CurrentPlayer].Name + ': '+ TextSayd);
        WriteLn('');
      end;
    end;




    use like this:

    SCAR Code:
    Procedure AutoRespond;
    begin
      AutoRespondByRick('Hi','yoo','yo','ewa');
      AutoRespondByRick('Noob','stfu','look at yourself','u r');
      AutoRespondByRick('Haha','lol','rofl','not funny');
      AutoRespondByRick('Total','look it up','look in hi-scores','not telling');
    end;



    AutoRespondByRick('look for text', 'random say 1', 'random say 2', 'random say 3');

    EDIT:

    REMEMBER: if the ('LookForText' = the same as 'random say x') then it will respond to him self!

  7. #7
    Join Date
    Jun 2007
    Posts
    785
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    if (InChat('att lvl?') or
          InChat('att level?') or
          InChat('attack level?') or
          InChat('attack lvl?')) then
          begin
          TypeSend(IntToStr(GetSkillLevel('Attack')))
          RespondAmount := RespondAmount + 1;

    this?

    [22:20] <[-jesus-]> freddy, go uninstall yourself

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

    Default

    Quote Originally Posted by MasterKill View Post
    i made one:

    it's looking in the last 2 line's for text to respond to. if you use it don't forget to credit me ^^

    SCAR Code:
    Function AutoRespondByRick (FindText, SayRandomText1, SayRandomText2, SayRandomText3 : string):Boolean;
    var
      textx, texty: Integer;
      TextSayd  : String;
      TextFound : String;
    begin
      if (not (IsTextInAreaEx(8, 428, 291, 461, textx, texty, FindText, 12, smallchars, False, True, 0, 1, 16711680))) then
      begin
        exit;
      end else
      begin
        Result := True;
        Case Random (3) of
          0: begin
               Typesend(SayRandomText1);
               TextSayd := SayRandomText1
             end;
          1: begin
               Typesend(SayRandomText2);
               TextSayd := SayRandomText2
             end;
          2: begin
               Typesend(SayRandomText3);
               TextSayd := SayRandomText3
             end;
        end;
        TextFound := FindText
        WriteLn('- - - Auto Respond By MasterKill - - -');
        WriteLn('- MrX: ' + TextFound);
        WriteLn('- ' + Players[CurrentPlayer].Name + ': '+ TextSayd);
        WriteLn('');
      end;
    end;




    use like this:

    SCAR Code:
    Procedure AutoRespond;
    begin
      AutoRespondByRick('Hi','yoo','yo','ewa');
      AutoRespondByRick('Noob','stfu','look at yourself','u r');
      AutoRespondByRick('Haha','lol','rofl','not funny');
      AutoRespondByRick('Total','look it up','look in hi-scores','not telling');
    end;



    AutoRespondByRick('look for text', 'random say 1', 'random say 2', 'random say 3');

    EDIT:

    REMEMBER: if the ('LookForText' = the same as 'random say x') then it will respond to him self!


    cant do it better man he wont use it
    ~Hermen

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

    Default

    thx all i had some problems with the script request forums so star fixed it and im gona use them all thx

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Autoresponder
    By nielsie95 in forum OSR Help
    Replies: 10
    Last Post: 09-15-2007, 08:27 AM
  2. Autoresponder
    By TViYH in forum RS3 Outdated / Broken Scripts
    Replies: 1
    Last Post: 05-22-2007, 11:25 PM
  3. AutoResponder...
    By Jason2gs in forum OSR Help
    Replies: 18
    Last Post: 03-02-2007, 03:28 PM
  4. AutoResponder
    By Hey321 in forum News and General
    Replies: 20
    Last Post: 02-11-2007, 09:28 PM

Posting Permissions

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