With this function you can create a string containing the given date, formatted as day/month/year.
date_date_string(date);
Argument | Type | Description |
---|---|---|
date | Datetime | The date to use. |
str = date_date_string(date_current_datetime());
draw_text(32, 32, str);
This would set "str" to hold a formatted string of the current date and time as shown by the system.