Page 1 of 1

[clientmod] Chat log [chatlog]

Posted: Sun Mar 19, 2017 13:23
by red-001
Log chat messages via CSM.

You need a new minetest-dev version.

How to use:
Just use the ".chatlog" or ".chatlog help" command.

License
License: MIT

Code: Select all

MIT License

Copyright (c) 2017 

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Get
github
Download

Install
Extract like a normal mod but to "/clientmods" instead of "/mods".
Then enable "client modding" in the advance settings menu

Re: [clientmod] Chat log [chatlog]

Posted: Sun Mar 19, 2017 13:31
by cx384
Nice mod!
The first post locks like this:
viewtopic.php?f=9&t=17046

Re: [clientmod] Chat log [chatlog]

Posted: Sun Mar 19, 2017 13:37
by Desour
Heh, nice idea to copy nearly everything from my clientmod's first post. :D
Could you write the chatlog also into a file?

Re: [clientmod] Chat log [chatlog]

Posted: Sun Mar 19, 2017 13:57
by red-001
Yeah I'm pretty bad at writing bbcode so I used your post as an example. I can't save it to a normal file because CSM doesn't give mods direct filesystem access, however you can find the json file the mod saves to in "/client/mod_storage/chatlog"

Re: [clientmod] Chat log [chatlog]

Posted: Sun Mar 19, 2017 18:13
by red-001
Update: You can now add timestamps to messages

Re: [clientmod] Chat log [chatlog]

Posted: Sun Mar 19, 2017 21:14
by BBmine
Very cool! Is this a mod, or a feature with the latest dev build?

Re: [clientmod] Chat log [chatlog]

Posted: Sun Mar 19, 2017 23:57
by red-001
Both? It's a mod for the new lua api.

Re: [clientmod] Chat log [chatlog]

Posted: Sun Mar 26, 2017 07:52
by red-001
Update: If you are using a recent version of minetest the prefix for client-sided commands as been changed from "/" to "."

Re: [clientmod] Chat log [chatlog]

Posted: Thu Apr 06, 2017 21:19
by red-001
update: The mod is now able to automatically detect if it should log messages that it's sending to the server.

Re: [clientmod] Chat log [chatlog]

Posted: Tue Apr 11, 2017 02:46
by Sokomine
Thanks for the mod! It's a pity that clientside mods can't access the filesystem :-( Thus we need a second script in order to read what was stored.

Re: [clientmod] Chat log [chatlog]

Posted: Fri May 19, 2017 18:50
by Wuzzy
What does this mod do?

Re: [clientmod] Chat log [chatlog]

Posted: Fri May 19, 2017 19:54
by Desour
Wuzzy wrote:What does this mod do?
AFAIK it logs the chat. :P

Re: [clientmod] Chat log [chatlog]

Posted: Fri Jun 09, 2017 12:49
by BBmine
Where does it save the chatlog? :P

Re: [clientmod] Chat log [chatlog]

Posted: Fri Jun 09, 2017 15:35
by red-001
it saves it as a kind of peusdo table in /client/storage/chatlog

Re: [clientmod] Chat log [chatlog]

Posted: Fri Jun 30, 2017 23:04
by BBmine
red-001 wrote:it saves it as a kind of peusdo table in /client/storage/chatlog
I can't really read it. I opened it with LibreOffice because it seems to be a CSV, but it looks unformatted.

Re: [clientmod] Chat log [chatlog]

Posted: Sat Sep 30, 2017 16:59
by azekill_DIABLO
"best thing to open something is a notepad" --azekill_DIABLO, just now.

Re: [clientmod] Chat log [chatlog]

Posted: Sun Oct 01, 2017 12:43
by Desour
@BBmine: Have you tried leafpad?

Re: [clientmod] Chat log [chatlog]

Posted: Wed Oct 04, 2017 16:54
by red-001
it's json encoded so yes libreoffice wouldn't handle it.

Re: [clientmod] Chat log [chatlog]

Posted: Sat Feb 20, 2021 12:15
by r1bnc
-

Re: [clientmod] Chat log [chatlog]

Posted: Mon May 03, 2021 08:51
by Miniontoby
May i implement this into my upcoming csm mod??? I make an adv_csm which includes lots of features such as playerlist and some node stuff and more debug and the coloured chat. I want to get this too, if you allow me, or i will code my own one.

Re: [clientmod] Chat log [chatlog]

Posted: Fri Jun 04, 2021 18:20
by Mesenotaur
Hello there!

This CSM seems really promising; I need to look at things people wrote with me.
So it saves the chatlog in a file in the mod’s storage, right? Does it also work for server notifications, PMs and other things? Just everything the chat gives you?
Anyway, I sadly have to report that this mod doesn’t work for me. My Minetest 5.4.1 is showing the following error:

Code: Select all

ModError: Failed to load and run mod "chatlog":
chatlog:init.lua:31: attempt to call field 'register_on_receiving_chat_messages' (a nil value)
stack traceback:
  chatlog:init.lua:31: in main chunk
Check debug txt for details.
I did not yet have the time nor interest into coding mods for myself, tho I want to get into it, especially some CSM.
So how can this be fixed? I understand that that parameter doesn’t exist; what is it now? And any idea why it changed?

Thanks for the mod and hopefully some answers and fixes.
--Mesenotaur

EDIT: Ok, this was a very easy fix. You just need to replace the two register_on_receiving_chat_messages in the code to register_on_receiving_chat_message (message instead of messages). Then the mod doesn’t crash and you join the server.
But: The logging logged the server messages, that’s good. But I wrote some messages into the chat and it logged nothing at all from those. I saw something like Debug id: 0 and Debug id: 1 in chat, which wasn’t there before. Is it not logging what I myself write?