07.02.2018, 11:03
Yea, It's possible. I did for myself somethink like this.
Registration Respone
Result
Registration Respone
Код:
e_Info[ playerid ][ RegisterDate ] = gettime();
Код:
Registered On: %s", timestampToDate(e_Info[ playerid ][ RegisterDate ])
Код:
stock timestampToDate(datetime, style = 0) { new string[64]; static tm<timestamp>; localtime(Time:datetime, timestamp); switch(style) { case 0: strftime(string, 64, "%d/%m/%Y - %X", timestamp); case 1: strftime(string, 64, "%d/%m/%Y", timestamp); } return String; }