Помогите исправить простенький скрипт, чтобы вместо нынешнего времени он выдавал время, в которое реально было написано это сообщение.
]]--
tLines = {};
tindex=0;
maxindex=15;
sBot = SetMan.GetString(21);
function UserConnected(user)
for i=tindex,maxindex,1 do
if tLines[i]~=nil then Core.SendToNick(user.sNick,tLines[i]) end;
end
for i=0,tindex-1,1 do
if tLines[i]~=nil then Core.SendToNick(user.sNick,tLines[i]) end;
end
end
OpConnected = UserConnected
RegConnected = UserConnected
function ChatArrival(sUser, sData)
if string.find(sData, "> !",1)==nil then
tLines[tindex]=sData;
if tindex<maxindex then tindex=tindex+1 else tindex=0 end
end
end