- 955
- 333
- Версия MoonLoader
- .026-beta
решил заменить диалоги, однако хук через samp.lua иногда перекрывает другие скрипты, и return false блокирует код в других скриптах(он не выполняется, например автологин) есть решения данной проблемы?
я честно хз
я честно хз
Lua:
function samp.onShowDialog(dialogId, style, title, button1, button2, text)
if mainIni.settings.dialog then
local list = 0
for line in text:gmatch('[^\n]+') do
list = list + 1
end
dialog = {
id = dialogId,
title = title,
style = style,
text = text,
maxList = list,
button1 = button1,
button2 = button2,
buttonID = new.int(1),
input = new.char[256](),
listItem = new.int(0)
}
dialogs[dialog.id] = os.clock() + 0.05
return false
end
end