Community Forums Today's Posts     Member List     Archive    
Results 1 to 5 of 5
  1. #1
    Join Date
    Mar 2011
    Posts
    1

    Solved Private Chat Logs

    I did attempt a search on this with no relevant hits, and I couldn't find an exact phrase option, but I apologize if I've overlooked something.

    Chat logs are stored in %appdata% but is there any way that searching for a specific log can be made easier if the user that the chat was shared with is not online to bring it up in the client? Or is there any other way that chat logs can be brought up within the client itself without the other user being online?

    Logs from today are not appearing in appdata/roaming/chat that I can see. Is there a more specific place I should be browsing to?

    Thank you for your time.

    Edit: Problem solved, didn't realize that all conversations with one partner are stored in the same text file regardless of time. Sorry for the wasted post.
    Last edited by AvariceSyn; 01-03-2011 at 04:59. Reason: Resolved

  2. #2
    Join Date
    Jun 2008
    Posts
    7,762
    Your logs are stored here C:\Program Files\TeamSpeak 3 Client\config\chats or
    C:\Users\yourusername\AppData\Roaming\TS3client\ch ats

  3. #3
    Join Date
    Jan 2010
    Location
    Germany
    Posts
    83
    How is the code or the algorithm of the userfiles? It isn't the Public Unique ID. How can i get one file withou checking every file for the username?

  4. #4
    Join Date
    Jul 2002
    Location
    Germany
    Posts
    2,836
    Quote Originally Posted by Basert View Post
    How is the code or the algorithm of the userfiles? It isn't the Public Unique ID. How can i get one file withou checking every file for the username?
    Decode the public unique ID using base64decode. Encode the resulting 20 bytes using this pseudo base16 code:

    Code:
            char conversionTable[] = { //converts 4bits to characters...so its basically our own base16 code
                    'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p'
            };
            std::string result;
            for(unsigned char* currentPos = data; currentPos != data + 20; ++currentPos) {
                    result += conversionTable[(*currentPos & 0xF0) >> 4];
                    result += conversionTable[(*currentPos & 0x0F)];
            }
    You think my answer is stupid ? Read This:
    http://www.catb.org/~esr/faqs/smart-...ons.html#intro

    In a world without fences and walls - who needs windows and gates ?

  5. #5
    Join Date
    Jan 2010
    Location
    Germany
    Posts
    83
    Thanks. Will there be an option in TeamSpeak to see the chatlogs, if your buddy is offline, too? It would be easier

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Private Chat Logs
    By AvariceSyn in forum General Questions
    Replies: 1
    Last Post: 09-03-2011, 13:41
  2. Replies: 2
    Last Post: 13-04-2010, 09:53
  3. Replies: 0
    Last Post: 23-12-2009, 13:54

Tags for this Thread

Posting Permissions

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