local sampev = require 'lib.samp.events'
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do
wait(10)
if isKeyDown(0x12) and isKeyDown(0x50) then
sampSendChat('/mn')
end
end
end
function sampev.OnShowDialog(dialogId,style,title,button1,button2,text)
if (dialogId == 27) then
sampSendDialogResponse(27,0,4,' ')
end
end