%sunset()

Aliases%sunset( )
Parameters-

    Returns the hour of day at which sunset occurs. You can use this in your
code to time events that should only occur at sunset or for which you
want to ensure occur between sunrise and sunset or vice versa.

Example:

if( !(%getTime() >= %sunrise() && %getTime() <= %sunset()) )
{
say I think we should be extra careful in these woods. There are
\ strange folk tales warning about travel through them at night.
}
endif