local enabled = false
local sampev = require 'lib.samp.events'
function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand('nodrug', function()
sampShowDialog(8881, 'Скажи наркотикам нет!', 'Блокировать нарко: '..(enabled and '{15ff00}включено' or '{ff0000}выключено'), 'Выбрать', 'Закрыть', 2)
end)
while true do
wait(0)
result, button, list, input = sampHasDialogRespond(8881)
if result then
if button == 1 then
enabled = not enabled
sampShowDialog(8881, 'Скажи наркотикам нет!', 'Блокировать нарко: '..(enabled and '{15ff00}включено' or '{ff0000}выключено'), 'Выбрать', 'Закрыть', 2)
end
end
end
end
function sampev.onSetPlayerDrunk(lvl)
return not enabled
end