function main()
repeat wait(0) until isSampAvailable()
sampRegisterChatCommand('teleport_1', function() --просто телепорт
setCharCoordinates(PLAYER_PED, 588.24, 1231.2, 41.1)
end)
sampRegisterChatCommand('teleport_2', function(coords)
local x, y, z = coords:match('(.+) (.+) (.+)') --телепорт по координатам через команду
setCharCoordinates(PLAYER_PED, x, y, z)
end)
wait(-1)
end