You dont care ? Did you mean you dont know O.o
PHP Code:
new bool:IsSecond = false //check if its the second return
for(i=0;i<5;i++) // 4 returns
{
if(IsSecond)
{
fprint(smth)
IsSecond = false
}
else // Its not the second return, its the first
{
fprint(smth else)
IsSecond = true // so the next return is second
}
But this is example and its not usable for your script because it will return first the 'first return' than 'second return' so it will print only to lines multiple times.So if you want to use it only once modify it like you want.