require "lib.moonloader"
local drugs = false
function main()
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand("idrugs", function()
drugs = not drugs
sampAddChatMessage(drugs and "on" or "off")
end)
while true do
wait(0)
if drugs then
wait(3050)
sampSendChat("/usedrugs 3")
end
end
end