- 19
- 1
- Версия MoonLoader
- .026-beta
Помогите пожалуйста, работает только авто-ввод пароля или адми-пароля! Что делать?
Код:
function samp.onShowDialog(id, style, title, button1, button2, text)
if elements.checkbox.autoCome.v then
if elements.input.adminPassword ~= '' then
lua_thread.create(function()
while true do
wait(100)
if title:find("Админ авторизация") then
sampSendDialogResponse(sampGetCurrentDialogId(), 1, _, elements.input.adminPassword.v)
sampCloseCurrentDialogWithButton(0)
break
end
end
end)
else
sampAddChatMessage('{FF0000}[Ошибка] {C71585}Авто-вход не будет произведён, по-скольку вы не указали админ-пароль.', stColor)
elements.checkbox.autoCome.v = false
HLcfg.config.autoCome = elements.checkbox.autoCome.v
save()
end
end
end
function samp.onShowDialog(id, style, title, button1, button2, text)
if elements.checkbox.autoCom.v then
if elements.input.playerPassword ~= '' then
lua_thread.create(function()
while true do
wait(0)
if title:find("Авторизация") then
sampSendDialogResponse(sampGetCurrentDialogId(), 1, _, elements.input.playerPassword.v)
sampCloseCurrentDialogWithButton(0)
break
end
end
end)
else
sampAddChatMessage('{FF0000}[Ошибка] {C71585}Авто-вход не будет произведён, по-скольку вы не указали пароль.', stColor)
elements.checkbox.autoCom.v = false
HLcfg.config.autoCome = elements.checkbox.autoCom.v
save()
end
end
end