Results 1 to 8 of 8

Thread: Autoresponder

  1. #1
    Join Date
    Jul 2009
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Autoresponder

    i wanna use this autoresponder but i get an error that it cant find "GetChatBox" obviously im missing an include could someone give me the link to the includes ? Thanks!

    Code:
    procedure AutoRespond;
    var
      RandomNum: Integer;
      LastLineText: string;
    begin
      LastLineText := Lowercase(GetChatBoxText(8, clBlue));   //Step 1
      if (Pos('hi', LastLineText) > 0) or (Pos('hello', LastLineText) > 0) or (Pos('hey', LastLineText) > 0) then  //Step 2
      begin
        WriteLn('Found autoresponder text');
        RandomNum := Random(3);
        case RandomNum of  //Step 3
          0: TypeSend('hello');
          1: TypeSend('hi');
          2: TypeSend('hey');
        end;
        Exit;
      end;
      if (Pos('wc lvl', LastLineText) > 0) or (Pos('wc level', LastLineText) > 0) or (Pos('cutting lvl', LastLineText) > 0) then  //Step 2
      begin
        WriteLn('Found autoresponder text');
        RandomNum := Random(3);
        case RandomNum of   //Step 3
          0: TypeSend(IntToStr(YourWCLevel));
          1: TypeSend('my wc is ' + IntToStr(YourWCLevel));
          2: TypeSend('my wc level is ' + IntToStr(YourWCLevel));
        end;
        Exit;
      end;
    end;

  2. #2
    Join Date
    Aug 2009
    Location
    Inside the Matrix...yes it has me, and it has you too.
    Posts
    1,896
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    would be easier if you posted the whole script please.
    NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN

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

    Default

    SCAR Code:
    {.include SRL/SRL.scar}

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

  4. #4
    Join Date
    Jul 2009
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    could you make me an autoresponder and just an autoreponder?

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

    Default

    Use the script you already have.

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

  6. #6
    Join Date
    Jul 2009
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i dont have one.. i just want an autoresponder script..

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

    Default

    An autoresponder is not a very simple thing to do well.

    What you should do it just use N1ke's or create one yourself. I also have one floating around somewhere...

    Anyways, search around the forums and you will find one. N1ke's and mine both just replace the empty CAutoRespond.scar file with an auto responder.

    Oh, and that function is in Text.scar.
    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

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

    Default

    Quote Originally Posted by zbubblez View Post
    i dont have one.. i just want an autoresponder script..


    Always try searching for your answers first.... I had to dig through a several pages, but I found what you are looking for....

    http://www.villavu.com/forum/showthr...tato+responder

    http://www.villavu.com/forum/showthr...ht=AutoRespond

    http://www.villavu.com/forum/showthr...ht=AutoRespond

    I personally think that a responder is the best anti-ban you can have... At the same time it is VERY Important that you edit it so that your replies vary from other people's ...it is very detectable when multiple people running the same script, have the same reply....

    Good Luck,

    ~RAM

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
  •