Есть такой скрипт: function samp.onServerMessage(col, text) if enabled then if text:find('Ваше сообщение') then lua_thread.create(function() for i=0, 100 do sampSendChat('/bizwar 1') sampSendChat('/bizwar 1') sampSendChat('/bizwar 1') wait(0) end end) end end
Куда вписать команду, чтобы скрипт срабатывал каждый час в 59 минут, 59 секунд, 500 мс
function samp.onServerMessage(col, text)
if enabled then
if text:find('Ваше сообщение') then
lua_thread.create(function()
for i=0, 100 do
sampSendChat('/bizwar 1')
sampSendChat('/bizwar 1')
sampSendChat('/bizwar 1')
wait(0)
end
end)
end
end
Куда вписать команду, чтобы скрипт срабатывал каждый час в 59 минут, 59 секунд, 500 мс