Jump to content
  • 0

random news by Emistry.


rayleigh

Question


  • Group:  Members
  • Topic Count:  57
  • Topics Per Day:  0.01
  • Content Count:  220
  • Reputation:   0
  • Joined:  09/05/13
  • Last Seen:  

Im using this..

-	script	News	-1,{
OnInit:
set .Time,60;		// Announce every x Minute.

setarray .News$[0],	// Random Message to be Announced
		"Updated News 1 every X Minute",
		"Updated News 2 every X Minute",
		"Updated News 3 every X Minute",
		"Updated News 4 every X Minute",
		"Updated News 5 every X Minute",
		"Updated News 6 every X Minute",
		"Updated News 7 every X Minute";
		
while( 1 ){
	announce .News$[ rand( getarraysize( .News$ ) ) ],0;
	sleep ( .Time * 60000 );
	}
end;
}

I want it to announce every 10 minutes. so i change

 

set .Time,60;        // Announce every x Minute.

into

set .Time,10;        // Announce every x Minute.

 

and this

sleep ( .Time * 60000 );

into

sleep ( .Time * 10000 );

 

 

But its announcing everay 1 minute.

whats the problem.

 

I tried adding 0 to sleep ( .Time * 10000 ); to make it sleep ( .Time * 100000 );

 

but its not announcing anymore.

Help anyone?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  265
  • Reputation:   96
  • Joined:  09/30/14
  • Last Seen:  

You were only supposed to edit one of the values.

So revert to the original and just change the 

 

set .Time,60;

 

line to 

 

set .Time,10;

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.00
  • Content Count:  60
  • Reputation:   33
  • Joined:  02/17/15
  • Last Seen:  

sleep ( .Time * 10000 );

back to 

sleep ( .Time * 60000 );

and

set .Time,10;

 

 

60000ms = 1min

.Time = 10;

 

= 10 minutes

Edited by Vincentore
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  57
  • Topics Per Day:  0.01
  • Content Count:  220
  • Reputation:   0
  • Joined:  09/05/13
  • Last Seen:  

woooooahhh that clears. it. so 60000 was the minute value.

 

That bumps me .. so noob. ahahah...

 

 

Thanks guys.. solved.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...