скрит который блочит ПОЛНОСТЬЮ "-"

тудудудудуу

Активный
Автор темы
326
33
ищу скрипт который блочит - при капче
1670171388827.png
 

Oleg Sleash

Участник
68
97
Lua:
local sampev = require 'samp.events'
local dlgid = -1
function sampev.onShowDialog(dialogId, style, title, button1, button2, text)
    if title:find("Проверка на робота") then
        dlgid = dialogId
    end
end
function sampev.onSendDialogResponse(dialogId, button, listboxId, input)
    if dlgid ~= -1 and input:find("%-") then
        input = input:gsub('-', '')
    end
end
 

Вложения

  • ingoreminus.lua
    365 байт · Просмотры: 3

тудудудудуу

Активный
Автор темы
326
33
Lua:
local sampev = require 'samp.events'
local dlgid = -1
function sampev.onShowDialog(dialogId, style, title, button1, button2, text)
    if title:find("Проверка на робота") then
        dlgid = dialogId
    end
end
function sampev.onSendDialogResponse(dialogId, button, listboxId, input)
    if dlgid ~= -1 and input:find("%-") then
        input = input:gsub('-', '')
    end
end
не работает