Results 1 to 6 of 6

Thread: Typesend goes to Quickchat?

  1. #1
    Join Date
    Aug 2008
    Location
    Finland
    Posts
    2,851
    Mentioned
    3 Post(s)
    Quoted
    2 Post(s)

    Default Typesend goes to Quickchat?

    im testing my auto responder and when it should answer, it sometimes goes to quickchat when it starts typing? why?

  2. #2
    Join Date
    Oct 2007
    Location
    Denmark
    Posts
    409
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I guess it's something in your script that does it?

    Post it please.

  3. #3
    Join Date
    Mar 2007
    Location
    <3
    Posts
    2,683
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Had the same problem before..

    Just make a CloseQC function.

    SCAR Code:
    {*******************************************************************************
    Function ChatIsNormal: Boolean;
    By: N1ke!
    Description: Checks if chat is normal, without QC open.
    *******************************************************************************}

    Function ChatIsNormal: Boolean;
    var
      x, y: Integer;
    begin
      Result := FindColorTolerance(x, y, 14474460, 5, 456, 192, 471, 4);
    end;

    {*******************************************************************************
    Procedure CloseQC;
    By: N1ke!
    Description: Closes QC if it's open.
    *******************************************************************************}

    Procedure CloseQC;
    begin
      If ChatIsNormal then Exit;
       MouseBox(8, 347, 20, 357, 1);
    end;

    ^Works.

  4. #4
    Join Date
    Apr 2007
    Location
    Perth, Australia
    Posts
    3,926
    Mentioned
    3 Post(s)
    Quoted
    2 Post(s)

    Default

    Make sure you're not trying to type nothing. ie. TypeSend(''); That will just press enter which opens the quickchat menu. Also SMART won't type certain symbols. So if your response is '...' or '???' for example, those symbols won't be typed and again, pressing enter will open the quickchat menu.

  5. #5
    Join Date
    Aug 2008
    Location
    Finland
    Posts
    2,851
    Mentioned
    3 Post(s)
    Quoted
    2 Post(s)

    Default

    ahh! ok then, it was about '...' then.
    crap, can i type them using like #13 and those things?

  6. #6
    Join Date
    Apr 2007
    Location
    Perth, Australia
    Posts
    3,926
    Mentioned
    3 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by marpis View Post
    ahh! ok then, it was about '...' then.
    crap, can i type them using like #13 and those things?
    Not sure. TypeSend should handle all that yet it still doesn't work.

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
  •