Results 1 to 12 of 12

Thread: Msn Auto Replier

  1. #1
    Join Date
    Feb 2006
    Location
    Australia, NSW.
    Posts
    1,461
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default Msn Auto Replier

    I use this when i'm away from the computer, (If you talk to me on msn, you've probably seen it).

    It's very basic, but works great. If you have a screen saver it will move the mouse every 55 seconds (The lowest screen saver wait time is 1 minute, So no matter what it avoids Screen Saver).

    Clicks on the person, sends a message, then minimizes it and continues waiting.

    The "StatusM" const is just a status thing. Layout of reply:

    Code:
    (StatusM) Auto Message: AutoMsg
    (Away) Auto Message: I'M AWAY!!
    I think it works only for Blue taskbars (I used Blue) and screen resolution 1024, 768. <3

    Code:
    Const
      AutoMsg = 'I''M AWAY!!';
      StatusM = 'Away';
      ScreenSaver = True;
    
    var
      backx, backy, kw, kh, count: Integer;
    
    procedure ScreenSaverAvoid;
    begin
      MoveMouseSmooth(random(kw), random(kh));
      SetTimeout(55, 'ScreenSaverAvoid');
    end;
    
    procedure MClick(x, y: integer; Left: boolean);
    begin
      MoveMouseSmooth(x, y);
      wait(50);
      Clickmouse(x, y, left);
    end;
    
    function BeingTalkedTo(var x, y: integer): boolean;
    begin
     if(findcolortolerance(x, y, 7957811, 97, 738, 1023, 767, 3))and
       (findcolortolerance(x, y, 11596996, 97, 738, 1023, 767, 3))and
       (findcolortolerance(x, y, 687333, 97, 738, 1023, 767, 3))then
      begin
        Backx:= x;
        Backy:= y;
       result:= true;
      end;
    end;
    
    procedure Minimize;
    begin
      wait(50);
      MClick(Backx, Backy, true);
      Wait(200);
    end;
    
    procedure reply;
    var
      x, y: integer;
    begin
      if(BeingTalkedTo(x, y))then
     begin
       MClick(x, y, true);
       wait(500);
       sendkeys('('+StatusM+') Auto Message: '+AutoMsg+chr(13));
       wait(500);
       MiniMize;
       writeln('Replied.. ' + inttostr(count));
      count:= count + 1;
     end;
    end;
    
    begin
     count:= 1;
      cleardebug;
      getclientdimensions(kw, kh);
     if(ScreenSaver)then
       SetTimeout(55, 'ScreenSaverAvoid');
     repeat
       wait(2000);
       reply;
     until(false);
    end.

  2. #2
    Join Date
    Feb 2006
    Location
    New Zealand
    Posts
    1,330
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hmmm i did mine a bit differently. I had it set so when the pop up thing comes own in right hand of screen it would click it. And it had a bit map of the word says. So it wouldnt click when they were just signing in. But i think your way is better.

  3. #3
    Join Date
    Feb 2006
    Location
    Australia, NSW.
    Posts
    1,461
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Pyro
    Hmmm i did mine a bit differently. I had it set so when the pop up thing comes own in right hand of screen it would click it. And it had a bit map of the word says. So it wouldnt click when they were just signing in. But i think your way is better.
    When you click someone on the taskbar you can just start typing instead of having to click in the box Waste of time i reckon' - I'm going to go to school and leave it on all day, I'll see how it goes.

  4. #4
    Join Date
    Feb 2006
    Location
    New Zealand
    Posts
    1,330
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Lol whats with the bold. Yea i had it find the bitmap of the nudge squiggly face. Then click to a bit down and a bit to the left and it worked

  5. #5
    Join Date
    Feb 2006
    Location
    Australia, NSW.
    Posts
    1,461
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    I left it on for 8 hours and it replied to 74 people No errors at all.

    ;D

  6. #6
    Join Date
    Feb 2006
    Location
    New Zealand
    Posts
    1,330
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by XxKanexX
    I left it on for 8 hours and it replied to 74 people No errors at all.

    ;D
    Well someones sure popular. I dont even think i have that many contacts lol

  7. #7
    Join Date
    Feb 2006
    Location
    Sunshine Coast, Qld. Australia
    Posts
    412
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by XxKanexX
    I left it on for 8 hours and it replied to 74 people No errors at all.

    ;D
    lol, If I got that many msgs, I would change my account name

  8. #8
    Join Date
    Feb 2006
    Posts
    1,022
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I made somthing like this for my first script. It used a bitmap of the flashing orange bit, and if it would find it, then it would click it type your away message(no const ) and then close it.

  9. #9
    Join Date
    Feb 2006
    Location
    Australia, NSW.
    Posts
    1,461
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Flyboy
    lol, If I got that many msgs, I would change my account name
    If someone Msg's me twice then it counts as 1 message. So some people played with it and tryed to make it stuff up.

    Didn't happen
    I have around 170+ contacts though. (From my recollection)

  10. #10
    Join Date
    Feb 2006
    Location
    California-Foster City
    Posts
    742
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    ARGH , you ruined a convo with me, mopar, and ben when i invited you

    Great job!
    The Welcoming Party
    Don't be a Fakawi! Get 25 hours of sleep a day!

  11. #11
    Join Date
    Feb 2006
    Location
    Australia, NSW.
    Posts
    1,461
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Sdcit
    ARGH , you ruined a convo with me, mopar, and ben when i invited you

    Great job!
    Lol yeh i got back home and checked your convo It kept interupting when you talked to mopar or driger

  12. #12
    Join Date
    Feb 2006
    Location
    Pennsylvania
    Posts
    1,524
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    Damn Kane, you need to delete some of those contacts. I only have 46 on my private MSN, and that is mostly from people with double accounts (Like you, abby, Joel etc....).
    On my noob MSN I problly have like 180+ people

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Your Full Guide to Preparing to Auto [SCAR, SRL, SVN, HowTo Auto]
    By Runescapian321 in forum Outdated Tutorials
    Replies: 71
    Last Post: 10-11-2008, 03:46 AM
  2. Replies: 5
    Last Post: 11-23-2007, 08:45 PM
  3. need a good script , auto miner auto banker plz!!
    By samuel in forum RS3 Outdated / Broken Scripts
    Replies: 27
    Last Post: 11-19-2007, 08:46 AM
  4. Theory: chat replier
    By blackfire553 in forum Bot Information and Spottings
    Replies: 1
    Last Post: 09-19-2006, 08:38 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
  •