SA-MP Forums Archive
MySQL, Get info - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: MySQL, Get info (/showthread.php?tid=238349)



MySQL, Get info - Unknown123 - 11.03.2011

pawn Код:
dcmd_joindate(playerid, params[])
{
    #pragma unused params
    new string[64];
    format(string,sizeof(string),"You registred on the date: %s", DateJoined);
    SendClientMessage(playerid, 0xFFFFFFAA, string);
    return 1;
}

/*

DateJoined == From my MySQL base, when the player register then the date get registred too.
So i cant use something like the admin level.. "PlayerData[AdminLevel];"
So how can i get the date he registred then?

*/
Picture from my MySQL base..