while (condition)
{
statements
}integer bDone = FALSE; while (!bDone) { if (llGetTimeOfDay() > 3600) { bDone = TRUE; } else { llSleep(500); } } llSay( 0, "Good morning!" );
while( llGetTimeOfDay() < 3600 ) { llSleep(500); } llSay( 0, "Good morning!" );