function stop(p,c,a)
local Time = 0
for i = 1,tonumber(a[1]) do
Time = Time + tonumber(a[2])
timer.Simple(tonumber(a[3]) + Time, function()
RunConsoleCommand("say","/drop" .. " ")
RunConsoleCommand("say","/sleep" .. " ")
end)
end
end
concommand.Add ("brk", stop)
10 = loop
2 = the pause between each timer
10 is the delay in seconds + Time
brk 10 2 10
So it'll be
10
12
14
16
18
brk 10 5 10
10
15
20
25
30