function main()
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand("time", timed)
sampRegisterChatCommand("avtor", blasthk)
sampAddChatMessage("Скрипт на отыгровку /time загружен", -1)
sampAddChatMessage("Запустить скрипт комманда /time", -1)
sampAddChatMessage("by Kelly", 255)
wait(-1)
end
function timed()
lua_thread.create(function()
sampSendChat("/me поднял руку и начал смотреть на часы")
wait(1000)
sampSendChat("/time")
sampSendChat('/do На часах время: '..(tonumber(os.date('%H'))-7)..':'..os.date('%M:%S.'))
wait(1000)
sampSendChat("/me опустил руку и перестал смотреть на часы")
end)
end
function blasthk()
sampAddChatMessage("Профиль автора скрипта на blast hk:", -1)
sampAddChatMessage("https://www.blast.hk/members/438113/", -1)
end