require 'lib.moonloader'
sampev = require 'lib.samp.events'
a = false
function main()
if not isSampLoaded() and not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(0) end
sampAddChatMessage('//a', -1)
sampRegisterChatCommand('/a', function() a = not a printStringNow(a and 'flood buying eggs:~g~ON' or 'flood buying eggs:~r~OFF',5000) end)
while true do wait(0)
if a then
setGameKeyState(21, 255)
wait(100)
setGameKeyState(21, 0)
end
end
end
function sampev.onShowDialog(id, style, caption, b1, b2, text)
if a then
if caption:find('Выбор товаров') then
-- printStringNow('~g~succussfull!', 300)
sampSendDialogResponse(id, 1, 0, -1)
return false
end
if not text:find('Покупка пшеницы') then
printStringNow('~g~succussfull!', 150)
sampSendDialogResponse(id, 1, -1, -1)
return false
end
end
end
function sampev.onServerMessage(color,text)
if text:find('се красители были раскуплены, ожидайте нового поступления.') then return false end
end