Thread: scheduleevent
View Single Post
  #3  
Old 10-03-2010, 05:28 PM
MrDumbledore MrDumbledore is offline
Headmaster of Hogwarts
MrDumbledore's Avatar
Join Date: Oct 2010
Location: The Leaky Cauldron
Posts: 31
MrDumbledore is on a distinguished road
scheduleEvent just waits x number of seconds to do something.

PHP Code:
function onCreated() {
  
this.scheduleEvent(5"onMyEvent"null); // the last parameter isn't needed on v6 and above, or on serverside
}

function 
onMyEvent() {
  echo(
"event!");

"event!" would be echoed 5 seconds after the script ran.

e: also, MrOmega, you should avoid using variables with the name 'var' as they don't work on clientside (might just be this.var, I don't remember) due to some stupid Flash thing Stefan implemented. Avoiding the use of it altogether is best to avoid confusion.
__________________
It is our choices, Harry, that show what we truly are, far more than our abilities.
Reply With Quote