User Tools

Site Tools


scripting:reference:time

This is an old revision of the document!


Time Functions and Values

Sometimes you'll want to script events that happen at a certain time (e.g. A minigame that runs every hour, or a special script that runs every Thursday at 7pm).

The main events for hourly events are “OnTheHour” (called every hour with no parameter) and “RealTimeClock” (where the event parameter specifies the time for this event - i.e. Event( “RealTimeClock”, “14” ) is triggered once a day at 2pm.

You can use the system value $gRealTimeDayOfWeek to get the day of the week - 1 is Sunday, 7 is Saturday.

OnTheHour

Triggered by Realtime clock reaching the hour
Event Parameter None
CancelTransaction N/A

Example

Event( "OnTheHour", "" )
{
    $numBongs = sysRealTime("Hour")
    if ( $numBongs > 12 )
    {
        $numBongs -= 12
    }
    $loop = 0
    while ( $loop < $numBongs )
    {
       	*customsoundall 1
       Sleep(10)
       $loop += 1
    }
}

RealTimeClock

Triggered by Realtime clock reaching the specified hour
Event Parameter Hour 0 - 23
CancelTransaction N/A

Example

$maDaysOfWeek[] = {  "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" }

Event( "RealTimeClock", "14" )
{
    *say It is 2pm on $maDaysOfWeek[$gRealTimeDayOfWeek]  !!
}
scripting/reference/time.1684415192.txt.gz · Last modified: 2023/05/18 08:06 by mit

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki