What is not correct about this? Help.
#1

Код:
stock ConvertTime(Milliseconds,&rMin,&rS,&rMS)
{
rMin=Milliseconds/60000;
Milliseconds-=rMin*60000;
rS=Milliseconds/1000;
Milliseconds-=rS*1000
rMS=Milliseconds;
}
and this error: "error 001: expected token: ";", but found "-identifier-" on line 1144,
line 1144 is ' rMS=Milliseconds; '

what is not correct about this? It is the only error it gives me when trying to compile, but it makes it unable to compile the whole script.
Reply
#2

You forgot ;

in this line

Milliseconds-=rS*1000
Reply
#3

yes but it did gave me the error in the wrong line D:
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)