Setting up date format

Date format is basically order of day, month and year. In order to set it properly so your players are not confused headover to the /shared/config.lua

Find

Config.DateFormat = 1                     --[[ [DEF. 1] [INT] Available formats:
                                            Config.DateFormat = 1 -- DD/MM/YYYY
                                            Config.DateFormat = 2 -- MM/DD/YYYY
                                            Config.DateFormat = 3 -- YYYY/DD/MM
                                            Config.DateFormat = 4 -- YYYY/MM/DD                           
                                          ]]
Integer
Layout

1

DD / MM / YYYY

2

MM / DD / YYYY

3

YYYY / DD / MM

4

YYYY / MM / DD

And set the number related to the format you want to set.

Last updated