07.05.2018, 23:57
Will anyone help me fix the error?
The hour is showing up 15:08, 15:09, 15:, 15:11.
"15:10" did not show up. only "15:"
The hour is showing up 15:08, 15:09, 15:, 15:11.
"15:10" did not show up. only "15:"
Код:
new Minute;
new Hour;
public OnGameModeInit()
{
Minute= 0;
Hour= 5;
SetTimer("TimeU",100,true);
return 1;
}
forward TimeU();
public TimeU()
{
new string[7];
Minute+=1;
if(Minute==60) {
Minute=00;
Hour+=1;
}
if(Hour==24) {
Minute=00;
Hour=0;
}
if(Minute<10) {
format(string,sizeof(string),"%d:%02d",Hour,Minute);
}
if(Minute>10) {
format(string,sizeof(string),"%d:%02d",Hour,Minute);
}
if(Hour<10) {
format(string,sizeof(string),"0%d:%02d",Hour,Minute);
}
for(new i; i<MAX_PLAYERS; i++) {
if(IsPlayerConnected(i)) {
SetPlayerTime(i,Hour,Minute);
}
}
TextDrawSetString(TimeTD,string);
return 1;
}

