10.12.2010, 02:31
How can i change the month?... now it says, 10.12.2010 but i want it to say 10.december[12].2010
pawn Code:
public OnPlayerConnect(playerid)
{
new string[64];
new Year, Month, Day;
getdate(Year, Month, Day);
format(string, sizeof(string), "%02d.%02d.%d", Day, Month, Year);
SendClientMessageToAll(COLOR_RED, string);
return 1;
}