Проверка на текст PRESS N

Ookla

Новичок
Автор темы
11
1
Версия MoonLoader
.026-beta
Хотелось бы узнать как заставить персонажа нажимать N при данной надписи:

Ниже мои попытки найти проверку
Мои попытки:
local se = require "samp.events"
function se.onDisplayGameText(style, time, text)
    if cfg.main.autohook and isCharPlayingAnim(playerPed, 'SWORD_IDLE') then
        sendPressKeyN(true)
        sendPressKeyN(false)
    end
    if text:find('PRESS') then
        sendPressKeyN(true)
        sendPressKeyN(false)
    end
    if text:match('PRESS N') then
        sendPressKeyN(true)
        sendPressKeyN(false)
    end
    if textdrawid == 2062 then
        if data['text']:find("PRESS N") then
            sendPressKeyN(true)
            sendPressKeyN(false)
        end
    end
end