- 40
- 3
- Версия MoonLoader
- Другое
Lua:
repeat wait(0) until isSampAvailable()
local request = requests.get('pastebin')
local nick = sampGetPlayerNickname(select(2, sampGetPlayerIdByCharHandle(PLAYER_PED)))
local function res()
for n in request.text:gmatch('[^\r\n]+') do
if nick:find(n) then
msg(nick:find(n))
msg('Скрипт запущен, у вас есть подтверждение!', -1)
end
end
return false
end
if not res() then
msg('Скрипт не был запущен, у вас нет подтверждения!', -1)
thisScript():unload()
end