local sampev = require "lib.samp.events"
require 'moonloader'
function sampev.onShowTextDraw(id, data)
local x, y = math.floor(data.position.x), math.floor(data.position.y)
if x == 320 and y == 290 then
lua_thread.create(function()
sampAddChatMessage("PRESS N")
wait(1)
setVirtualKeyDown(VK_N, true)
end)
end
end