- 97
- 12
- Версия MoonLoader
- Другое
ы:
if code_window.v then
imgui.Begin(u8"Активация", code_window)
imgui.Text(u8"Привет! \n Введите ключ, который вам выдали при покупке, или который вы выбрали сами.")
imgui.InputText("", code_buffer)
if imgui.Button(u8"Готово") then
local request = requests.get('http://xyi.tebe/keys.txt')
local nick = code_buffer.v
local function res()
for n in request.text:gmatch('[^\r\n]+') do
if nick:find(n) then return true end
end
return false
end
if not res() then error('go nahooй') end
sampAddChatMessage('скрипт загружен автор вася пупочкин', -1)
code_window.v = false
end
imgui.End()
end