sorry if it has been posted before, but I couldnt find it in search.

would it be possible, or is there, a command to pause scripts?

so that it gives a little time before going to the next part, like
Code:
 
on *:text:!opall:#:{
var %oa 0
:nextop
inc %oa
if ($nick(#,%oa) == $null) { halt }
mode # +o $nick(#,%oa)
pause 5
goto nextop
}
 


where pause 5 would be pause for 5 seconds, then goto nextop to avoid flooding off and such?
I know that could be wrote differently to avoid flooding, but other scripts (that I cannot think of at this moment) are either hard to do, or impossible.