- 131
- 29
- Версия MoonLoader
- .026-beta
Как сделать скрытие диалога если чат активен, чтобы не подкидывали диалоги например, но когда я сам работаю с диалогом он не скрывался при нажатии F6
Lua:
local state = true
function main()
sampAddChatMessage('{73b461}[AntiRazvod]{ffffff} Загружен!',-1)
sampRegisterChatCommand('antirazv',antirazvod)
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(200) end
while true do wait(0)
if state == true then
if sampIsChatInputActive() then
sampCloseCurrentDialogWithButton(0)
end
end
end
end
function antirazvod()
state = not state
sampAddChatMessage('{73b461}[AntiRazvod]{ffffff} '..(state and "Активен" or "Выключен")..'!',-1)
end