There's no way to pause a loop, but you can let the loop continue and do something like this to prevent it from performing the normal actions:
$loop = 1;
$looppause = 0;
for(%i = $loop;%i == 1;%i = $loop)
{
if(!$looppause)
{
//perform actions here
}
}