function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand('zv', function(text)
local id, f, reason = text:match('(%d+) (%d+) (.*)')
if reason then
for i = 1, tonumber(f) do
sampSendChat('/su '..id..' '..reason)
end
end
end)
wait(-1)
end