23.12.2015, 00:45
Como Otimizar este code, se possнvel:
PHP Code:
stock DIZER_HORA()
{
new lStr[45];
gettime(H_HORA, H_MIN, H_SEG);
if(H_HORA == 0) strcat(lStr, "Agora sao 00:00 da matina [MEIA NOITE]");
else if(H_HORA == 1) strcat(lStr, "Agora sao 01:00 da matina [BOA MADRUGADA]");
else if(H_HORA == 2) strcat(lStr, "Agora sao 02:00 da matina [BOA MADRUGADA]");
else if(H_HORA == 3) strcat(lStr, "Agora sao 03:00 da matina [BOA MADRUGADA]");
else if(H_HORA == 4) strcat(lStr, "Agora sao 04:00 da matina [BOA MADRUGADA]");
else if(H_HORA == 5) strcat(lStr, "Agora sao 05:00 da matina [BOA MADRUGADA]");
else if(H_HORA == 6) strcat(lStr, "Agora sao 06:00 da manha [BOM DIA]");
else if(H_HORA == 7) strcat(lStr, "Agora sao 07:00 da manha [BOM DIA]");
else if(H_HORA == 8) strcat(lStr, "Agora sao 08:00 da manha [BOM DIA]");
else if(H_HORA == 9) strcat(lStr, "Agora sao 09:00 da manha [BOM DIA]");
else if(H_HORA == 10) strcat(lStr, "Agora sao 10:00 da manha [BOM DIA]");
else if(H_HORA == 11) strcat(lStr, "Agora sao 11:00 da manha [BOM DIA]");
else if(H_HORA == 12) strcat(lStr, "Agora sao 12:00 da tarde [BOA TARDE]");
else if(H_HORA == 13) strcat(lStr, "Agora sao 13:00 da tarde [BOA TARDE]");
else if(H_HORA == 14) strcat(lStr, "Agora sao 14:00 da tarde [BOA TARDE]");
else if(H_HORA == 15) strcat(lStr, "Agora sao 15:00 da tarde [BOA TARDE]");
else if(H_HORA == 16) strcat(lStr, "Agora sao 16:00 da tarde [BOA TARDE]");
else if(H_HORA == 17) strcat(lStr, "Agora sao 17:00 da tarde [BOA TARDE]");
else if(H_HORA == 18) strcat(lStr, "Agora sao 18:00 da tarde [BOA TARDE]");
else if(H_HORA == 19) strcat(lStr, "Agora sao 19:00 da noite [BOA NOITE]");
else if(H_HORA == 20) strcat(lStr, "Agora sao 20:00 da noite [BOA NOITE]");
else if(H_HORA == 21) strcat(lStr, "Agora sao 21:00 da noite [BOA NOITE]");
else if(H_HORA == 22) strcat(lStr, "Agora sao 22:00 da noite [BOA NOITE]");
else if(H_HORA == 23) strcat(lStr, "Agora sao 23:00 da noite [BOA NOITE]");
return 1;
}