require 'lib.moonloader'
local sampev = require 'lib.samp.events'
function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand('lovlya', function()
act = not act
if act then sampAddChatMessage('Включено', -1) else sampAddChatMessage('Выключено', -1) end
end)
while true do wait(-1) end
end
function checkname()
if thisScript().filename ~= 'lovlya video card v2 by VRush.lua' then
sampAddChatMessage('Название скрипта было изменено, скрипт отключён')
thisScript():unload()
end
end
function sampev.onServerMessage(color, text)
if text:find('__________________________________') or text:find('Для получения PayDay вы должны отыграть минимум 20 минут.') then
sampSendDialogResponse(sampGetCurrentDialogId(), 1, nil, nil)
sampCloseCurrentDialogWithButton(1)
end
end