текст в чате

zx\x\

Новичок
Автор темы
23
0
Версия MoonLoader
Другое
мне нужно крч что бы при найденом тексте в чате, он выходил из игры, но если ток функция включена
 

Dmitriy Makarov

25.05.2021
Проверенный
2,513
1,138
Lua:
require "lib.moonloader"
local sampev = require 'lib.samp.events'

local state = false

function main()
    while not isSampAvailable() do wait(100) end
    sampRegisterChatCommand("act", function()
        state = not state
        sampAddChatMessage("Activate "..(state and "ON" or "OFF"), -1)
    end)
    wait(-1)
end

function sampev.onServerMessage(color, text)
    if text:find("Твой текст") and state then
        lua_thread.create(function() wait(10)
            sampProcessChatInput("/q")
        end)
    end
end
Не тестил.
 

zx\x\

Новичок
Автор темы
23
0
Lua:
require "lib.moonloader"
local sampev = require 'lib.samp.events'

local state = false

function main()
    while not isSampAvailable() do wait(100) end
    sampRegisterChatCommand("act", function()
        state = not state
        sampAddChatMessage("Activate "..(state and "ON" or "OFF"), -1)
    end)
    wait(-1)
end

function sampev.onServerMessage(color, text)
    if text:find("Твой текст") and state then
        lua_thread.create(function() wait(10)
            sampProcessChatInput("/q")
        end)
    end
end
Не тестил.
надо чтобы функция была включена в Imgui

Lua:
require "lib.moonloader"
local sampev = require 'lib.samp.events'

local state = false

function main()
    while not isSampAvailable() do wait(100) end
    sampRegisterChatCommand("act", function()
        state = not state
        sampAddChatMessage("Activate "..(state and "ON" or "OFF"), -1)
    end)
    wait(-1)
end

function sampev.onServerMessage(color, text)
    if text:find("Твой текст") and state then
        lua_thread.create(function() wait(10)
            sampProcessChatInput("/q")
        end)
    end
end
Не тестил.
autoleave переменная