local sampev = require("samp.events")
require('addon')
function sendKey(id)
key = id
updateSync()
end
function sampev.onSendPlayerSync(data)
if key then
data.keysData = key
key = nil
end
end
function onCoordStop() -- Остановка КУРДА
local x, y, z = getBotPosition()
if math.floor(x) == 123 then
newTask(sendKey, 3500, 1024) -- Нажатие Alt
end
end