SA-MP Forums Archive
need help in last login and register date. - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: need help in last login and register date. (/showthread.php?tid=486098)



need help in last login and register date. - Champ - 07.01.2014

As i am using mySQL and I never built this feature so i need little help to create it.

Do any body know how to create last login system, saves the date/month/year on login and register date. saves register date on register.


Re: need help in last login and register date. - BlackSirrah239 - 07.01.2014

Assuming you already have a saving system, all you need to do is save this string:
Код:
    new iYear, iMonth, iDay;
    getdate(iYear, iMonth, iDay);
    format(PlayerInfo[playerid][pLogin], 10, "%d/%d/%d", iDay, iMonth, iYear);
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.