Gettime

From Hercules Wiki
Revision as of 18:31, 16 September 2016 by Haru (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
This article may need to be updated. Please update this article to reflect recent events or newly available information, and remove this template when finished. Please see the talk page for more information.

Contents

Syntax

  • gettime(<type>);

Description

This function retrieves current system time and date values depending on parameter type:

  1. Seconds (0 - 59)
  2. Minutes (0 - 59)
  3. Hours (0 - 23)
  4. Day of Week (0: Sunday - 6: Saturday)
  5. Day of Month (1 - 31)
  6. Month (1 - 12)
  7. Year (1970 - 2038)
  8. Day of Year (1 - 366)

Any other value will cause the function to return -1. Only numbers are returned.

Examples

if(gettime(4)==6)
{
    mes "It's a Saturday. I don't work on Saturdays.";
    close;
}

See Also