local screenshot = require 'lib.screenshot'
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
thread = lua_thread.create_suspended(cmd_handler_thread)
sampRegisterChatCommand('arrestcar', cmd_handler)
wait(-1)
end
function cmd_handler(arg)
thread:run(arg)
end
function cmd_handler_thread(arg)
sampSendChat('/me вносит штраф в бк на авто, заполняет тикет о неправильной парковке.')
wait(1500)
sampSendChat('/me выходит из авто, направляется к оштрафованной машине, кладет под дворник тикет, возращается обратно.')
wait(1500)
sampSendChat('/arrestcar '..arg)
screenshot.request()
end