require "lib.moonloader"
local drugs = false
function main()
while not isSampAvailable() do wait(100) end
sampAddChatMessage("Твой текст", 0x00f7f7)
sampRegisterChatCommand("ohp", function()
drugs = not drugs
sampAddChatMessage(drugs and "{00FF00}Прокачка началась" or "{FF0000}Прокачка закончилась")
end)
while true do
wait(0)
if drugs then
wait(3050)
sampSendChat("/usedrugs 3")
end
end
end