Problem SyncUp2
#7

Код:
stock IncreaseVehicleHours()
{
    for(new id = 0; id <= MAX_PLAYERS; id++)
	{
		VehicleInfo[id][minutes] += 1;
		VehicleInfo2[id][minutes] += 1;
		MotoInfo[id][minutes] += 1;
		PlaneInfo[id][minutes] += 1;
		if(VehicleInfo[id][minutes] >= 60)
		{
		    VehicleInfo[id][hours] += 1;
		    VehicleInfo[id][minutes] = 0;
		}
		if(VehicleInfo2[id][minutes] >= 60)
		{
		    VehicleInfo2[id][hours] += 1;
		    VehicleInfo2[id][minutes] = 0;
		}
		if(MotoInfo[id][minutes] >= 60)
		{
		    MotoInfo[id][hours] += 1;
		    MotoInfo[id][minutes] = 0;
		}
  		if(PlaneInfo[id][minutes] >= 60)
		{
		    PlaneInfo[id][hours] += 1;
		    PlaneInfo[id][minutes] = 0;
		}
	}
}
Reply


Messages In This Thread
Problem SyncUp2 - by Mititel - 21.08.2015, 21:23
Re: Problem SyncUp2 - by Mititel - 22.08.2015, 17:42
Re: Problem SyncUp2 - by Mititel - 24.08.2015, 21:24
Re: Problem SyncUp2 - by Abagail - 24.08.2015, 21:37
Re: Problem SyncUp2 - by Mititel - 25.08.2015, 18:47
Re: Problem SyncUp2 - by Abagail - 25.08.2015, 18:48
Re: Problem SyncUp2 - by Mititel - 25.08.2015, 20:09
Re: Problem SyncUp2 - by jamal1992 - 25.08.2015, 21:59
Re: Problem SyncUp2 - by Mititel - 25.08.2015, 22:56
Re: Problem SyncUp2 - by prineside - 25.08.2015, 23:06

Forum Jump:


Users browsing this thread: 1 Guest(s)