scripting:reference:time
Differences
This shows you the differences between two versions of the page.
scripting:reference:time [2023/05/18 08:06] – created mit | scripting:reference:time [2023/05/18 08:11] (current) – mit | ||
---|---|---|---|
Line 5: | Line 5: | ||
The main events for hourly events are " | The main events for hourly events are " | ||
- | You can use the system value '' | + | You can use the sys function '' |
+ | |||
+ | |||
+ | ==== RealTimeClock ==== | ||
+ | ^ Triggered by | Realtime clock reaching the specified hour | | ||
+ | ^ Event Parameter | Hour 0 - 23 | | ||
+ | ^ CancelTransaction | N/A | | ||
+ | // | ||
+ | < | ||
+ | $maDaysOfWeek[] = { " | ||
+ | |||
+ | Event( " | ||
+ | { | ||
+ | *say It is 2pm on $maDaysOfWeek[$gRealTimeDayOfWeek] | ||
+ | } | ||
+ | </ | ||
Line 31: | Line 46: | ||
</ | </ | ||
- | ==== RealTimeClock ==== | ||
- | ^ Triggered by | Realtime clock reaching the specified hour | | ||
- | ^ Event Parameter | Hour 0 - 23 | | ||
- | ^ CancelTransaction | N/A | | ||
- | //Example// | ||
- | < | ||
- | $maDaysOfWeek[] = { " | ||
- | Event( "RealTimeClock", "14" ) | + | ==== sysRealTime ==== |
+ | ^ Format | sysRealTime ( Type )| | ||
+ | ^ Description | Returns details of the current real time (according to the server clock)| | ||
+ | ^ Returns | Depending on the type field: | | ||
+ | ^ | **Year** - returns the current year (e.g. 2014) | | ||
+ | ^ | **Month** - returns the current month number (1 to 12) | | ||
+ | ^ | **Day** - returns the current day number (1 to 31) | | ||
+ | ^ | **WeekDay** - returns the current day of the week (1 to 7) | | ||
+ | ^ | **Hour** - returns the current hour (0 to 23) | | ||
+ | ^ | **Minute** - returns the current minute (0 to 59) | | ||
+ | ^ | **Second** - returns the current second (0 to 59) | | ||
+ | ^ | **UnixTime** - number of seconds passed since 1st Jan, 1970 | | ||
+ | // | ||
+ | < | ||
{ | { | ||
- | *say It is 2pm on $maDaysOfWeek[$gRealTimeDayOfWeek] | + | $hour = sysRealTime( " |
+ | if ( $hour < 18 ) | ||
+ | { | ||
+ | *msg %PLAYER% Tea can only be used at tea-time (6pm - 8pm) | ||
+ | } | ||
+ | else if ( $hour >= 20 ) | ||
+ | { | ||
+ | *msg %PLAYER% Tea can only be used at tea-time (6pm - 8pm) | ||
+ | } | ||
+ | else | ||
+ | { | ||
+ | *notifylarge %PLAYER% Tea-time! | ||
+ | } | ||
} | } | ||
</ | </ | ||
+ | </ | ||
+ |
scripting/reference/time.1684415192.txt.gz · Last modified: 2023/05/18 08:06 by mit