|
| Author |
Message |
MxT Young One

Joined: 26 Nov 2005 Posts: 65
      
|
Posted: Wed Jan 18, 2006 5:34 pm Post subject: Timer |
|
|
Hi Can someone tell me how to make a timer like each 5 min make something?
Give me hint if you dont want to give me code. Its ok.
Plz i need it for some of my command. |
|
| Back to top |
|
 |
Mojave Almost An Agent

Joined: 01 Nov 2003 Posts: 1434
 
|
Posted: Wed Jan 18, 2006 5:53 pm Post subject: |
|
|
| Code: | my $alarm = time 300;
while( 1 )
{
if( time >= $alarm )
{
print( "bzzzzzzzzzzzzzzzzzzzz\n" );
$alarm = time 300;
}
} |
|
|
| Back to top |
|
 |
MxT Young One

Joined: 26 Nov 2005 Posts: 65
      
|
Posted: Wed Jan 18, 2006 6:02 pm Post subject: Thank you |
|
|
Thank you mojave  |
|
| Back to top |
|
 |
Mojave Almost An Agent

Joined: 01 Nov 2003 Posts: 1434
 
|
Posted: Wed Jan 18, 2006 6:04 pm Post subject: |
|
|
| The plusses seemed to have disappeared in my code, but I bet you can figure out where they go. |
|
| Back to top |
|
 |
MxT Young One

Joined: 26 Nov 2005 Posts: 65
      
|
Posted: Wed Jan 18, 2006 6:15 pm Post subject: Yeah |
|
|
| Yeah i know how to put the . |
|
| Back to top |
|
 |
|