SHOW:
|
|
- or go back to the newest paste.
| 1 | --Chat Log | |
| 2 | minetest.register_on_chat_message(function(name, message) | |
| 3 | - | chatlog, err = io.open("chatlog.txt", "a")
|
| 3 | + | chatlog, err = io.open(minetest.get_worldpath() .. "/chatlog.txt", "a") |
| 4 | if not chatlog then | |
| 5 | print("Could not open chatlog.txt: " .. err)
| |
| 6 | return | |
| 7 | end | |
| 8 | msg = "<" .. name .. "> " .. message | |
| 9 | chatlog:write(msg) | |
| 10 | chatlog:close() | |
| 11 | end) |