Gametext

Sadow

Известный
Автор темы
1,428
593
Версия MoonLoader
Другое
Как можно сделать постоянную проверку на гейм текст и чтобы при виде определённого гейм текста происходило действие?
 
Решение
взял из какого то скрипта, вроде то что над
Lua:
function hook.onShowTextDraw(textdrawId, data)
    if textdrawId > 3 then
    if tapactive then
        if data.text:find("Y") then
            sendKey(64)
        elseif data.text:find("N") then
            sendKey(128)
        elseif data.text:find("H") then
            sendKey(192)
        end
    end
    end
end

Lua:
local ev = require 'lib.samp.events'

function ev.onDisplayGameText(style, time, text)
    if text:find("Тут типо текст") then
        -- Тут действие
    end
end

ARMOR

011110000111100101101001
Модератор
4,969
6,887
взял из какого то скрипта, вроде то что над
Lua:
function hook.onShowTextDraw(textdrawId, data)
    if textdrawId > 3 then
    if tapactive then
        if data.text:find("Y") then
            sendKey(64)
        elseif data.text:find("N") then
            sendKey(128)
        elseif data.text:find("H") then
            sendKey(192)
        end
    end
    end
end

Lua:
local ev = require 'lib.samp.events'

function ev.onDisplayGameText(style, time, text)
    if text:find("Тут типо текст") then
        -- Тут действие
    end
end
 
  • Нравится
  • Вау
Реакции: pchelkin (mearfy) и Sadow