12.10.2014, 09:25
Hi guys! i need help, i want to add the current date on this code:
like this: [dd/mm/yy - hh:mm]
Thanks..
pawn Код:
new stringbig[356];
if(team[playerid] == TEAM_HUMAN)
{
format(stringbig,sizeof(stringbig),"{C9FFAB} [HUMAN](%d): %s",playerid, text);
SendPlayerMessageToAll(playerid,stringbig);
}
if(team[playerid] == TEAM_ZOMBIE)
{
format(stringbig,sizeof(stringbig),"{C9FFAB} [ZOMBIE](%d): %s",playerid, text);
SendPlayerMessageToAll(playerid,stringbig);
}
Thanks..