Adding timestamps to Join Logs
A simple feature which Basic Admin lacks is having the timestamp of when a player joined in :joinlogs. Having this might be helpful for some games, so you can add it by following these easy steps:
1. Find this section of your MainModule
2. Change this line
addLog(sysTable.joinLogs,Player.Name
to
addLog(sysTable.joinLogs,os.date("%X").." | "..Player.Name)
3. That’s it!
The :joinlogs command will now show players in the following format: HH:MM:SS | Username

