• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

TFS 1.2 Store admin talkaction history?

Try
data/talkactions/lib/talkactions.lua
Code:
local logFormat = "[%s] %s %s\n"

function logCommand(player, words, param)
    local file = io.open("data/logs/" .. player:getName() .. " commands.log", "a")
    if not file then
        return
    end

    file:write(logFormat:format(os.date("%d/%m/%Y %H:%M"), words, param:trim()))
    file:close()
end

1670164828279.png
 
Back
Top