Quote:
Originally Posted by Chandler
Balls, you speak lies. 
|
Yeah, sure.. Whatever you say. That's the way they work though, perhaps you should try if your script works before you post it.
PHP Code:
function onCreated()
{
temp.myList = {"hey", "hi", "lol"};
for (currentItem: temp.myList)
echo(currentItem);
echo(currentItem);
scheduleevent(3, "Repeat", "");
}
function onRepeat()
{
echo(currentItem);
}
When onRepeat() is called, it will echo absolutely nothing!