local vkeys = require 'vkeys'
function gettime(a)
local h = math.floor(a / 3600) -- узнает часы
local H = tostring(h)
if h < 10 then
H = '0' .. H -- делает например "05", а не "5"
end
a = a - h * 3600 -- отнимает часы
local m = math.floor(a / 60) -- узнает минуты
local M = tostring(h)
if m < 10 then
M = '0' .. M
end
a = a - m * 60 -- отнимает минуты
local s = h -- оставшееся – секунды
local S = tostring(s)
if s < 10 then
S = '0' .. S
end
return H .. ':' .. M .. ':' .. S
end
function main()
while true do
wait(0)
if isKeyJustPressed(VK_X) then -- при нажатии X
sampAddChatMessage(gettime(a)) -- выведет в формате: ЧЧ:ММ:СС
end
end
end