require 'lib.moonloader'
local vkeys = require 'vkeys'
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do
wait(0)
if wasKeyPressed(VK_MENU) then --если нажата клавиша ALT, то
sampSendChat('/cmd') --отправка команды
end
end
end