26.01.2014, 15:13
Try to set it into integer. So, delete .00 from minute and hour.
Or also you can float the integer with:
new Float:hours, Float:minutes;
hours = float(hour);
minutes = float(minutes);
and make the same comparation as before
Or compare it with floatcmp(float, float) == 0
Or also you can float the integer with:
new Float:hours, Float:minutes;
hours = float(hour);
minutes = float(minutes);
and make the same comparation as before
Or compare it with floatcmp(float, float) == 0