I wanted to try out a couple of scripts, first off is there anyway that I could make a script to tell someone the current time like this?
function OnTime (thename, theoutput, thewildcardsVB)
{
var Name
var Time
Name = world.GetTriggerInfo (thename, 101)
Time = ??
world.send ("\"Hello, " + Name + ". The current time is: " + Time + ".")
} //end of OnTime
And second, I wanted to make a test script that would send, "Hello, I will repeat this message X times.", three times. But each time change the X to how many times are left. Is there any way to do this without just writing that three times?
function OnTime (thename, theoutput, thewildcardsVB)
{
var Name
var Time
Name = world.GetTriggerInfo (thename, 101)
Time = ??
world.send ("\"Hello, " + Name + ". The current time is: " + Time + ".")
} //end of OnTime
And second, I wanted to make a test script that would send, "Hello, I will repeat this message X times.", three times. But each time change the X to how many times are left. Is there any way to do this without just writing that three times?