function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand('myCommand', function(arg)
if arg:find('(%d+) (%d+) (%d+)') then
local x, y, z = arg:match('(%d+) (%d+) (%d+)')
local result = placeWaypoint(tonumber(x), tonumber(y), tonumber(z))
if result then
sampProcessChatInput('/prikol')
else
sampAddChatMessage('Что-то пошло не так :(', -1)
end
else
sampAddChatMessage('Координаты не введены!', -1)
end
end)
wait(-1)
end