Hi,
I have included a timer in the game.Time limit is 3 min.
It starts from 2.60.60 and continues till 0.60.60
But as soon as it reaches 0.60.60,timer stops and it becomes
0.0.0.
I don't know how is it happening?
plz make this code working so dat the timer starts from 2.60.60 and continues till
0.0.0
I am giving the code here....
//......TIMER.............
if(Timer==true)
{
if(min>=0)
{
if(ms==0)
{
ms=60;
if(sec==0)
{
sec=60;
min--;
}
else
{
sec--;
}
}
else if(ms>0)
{
ms-=10;
}
}
else
{
}
time = min + ":" +sec+ ":" + ms;
}
