need help in last login and register date.
#1

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.
Reply
#2

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.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)