07.01.2014, 08:15
Assuming you already have a saving system, all you need to do is save this string:
Where PlayerInfo[playerid][pLogin] is a variable that will hold the last login date. Change that up a little for register date and save it too.
Код:
new iYear, iMonth, iDay; getdate(iYear, iMonth, iDay); format(PlayerInfo[playerid][pLogin], 10, "%d/%d/%d", iDay, iMonth, iYear);