Results 1 to 5 of 5
Thread: Private Chat Logs
-
01-03-2011, 04:57 #1
-= TeamSpeak User =-
- Join Date
- Mar 2011
- Posts
- 1
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
-
09-03-2011, 13:41 #2
-= TeamSpeak Team =-
- 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
-
20-03-2011, 14:10 #3
-= TeamSpeak Lover =-
- 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?
-
21-03-2011, 10:45 #4
-= TeamSpeak Team =-
- Join Date
- Jul 2002
- Location
- Germany
- Posts
- 2,836
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 ?
-
22-03-2011, 15:17 #5
-= TeamSpeak Lover =-
- 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
-
Private Chat Logs
By AvariceSyn in forum General QuestionsReplies: 1Last Post: 09-03-2011, 13:41 -
[Fixed]Beta 18: Why no context menu entry for private chat on query clients anymore?
By Stefan1200 in forum Suggestions and FeedbackReplies: 2Last Post: 13-04-2010, 09:53 -
[BUG] Chat tab name wrong, if chat mate is offline and server query connection occur
By Stefan1200 in forum WindowsReplies: 0Last Post: 23-12-2009, 13:54


Reply With Quote
