[HELP] Error
#3

Код:
C:\gf.pwn(33347) : warning 209: function "ReturnTime" should return a value
C:\gf.pwn(33348) : error 010: invalid function or declaration
LINES: 33347-33348
pawn Код:
stock ReturnTime(timevariable)
{
    new milliseconds = timevariable, seconds, minutes, string[20];
    while(milliseconds > 9)
    {
        seconds ++;
        milliseconds = milliseconds - 10;
    }
    while(seconds > 59)
    {
        minutes ++;
        seconds = seconds - 60;
    }
        format(string, sizeof(string), "%d:%02d.%03d", minutes, seconds, milliseconds);
    }//line 33338
    return string;//line 33339
}
Reply


Messages In This Thread
[HELP] Error - by monster010 - 03.05.2014, 10:12
Re: [HELP] Error - by Konstantinos - 03.05.2014, 10:28
Re: [HELP] Error - by monster010 - 03.05.2014, 10:55
Re: [HELP] Error - by Konstantinos - 03.05.2014, 11:01
Re: [HELP] Error - by monster010 - 03.05.2014, 11:02

Forum Jump:


Users browsing this thread: 2 Guest(s)