local sampev = require 'samp.events'
local ChatLog = {}
function sampev.onServerMessage(color, text)
ChatLog[os.clock()] = {['color'] = color, ['text'] = text}
end
function PrintChatLog()
for time, msg in pairs(ChatLog) do
print(string.format('[%d]{%s} %s', time, tostring(msg.color):sub(-9, -3), msg.text)
--[[
%d - Время отправки сообщения(в секундах)
Первое %s - цвет сообщения в HEX
Второе $s - само сообшение
]]
end
end