31.03.2014, 10:00
So I get these warnings while I compile my script;
On line 259 - 267;
Help would be appreciated, thanks!
Код:
C:\Users\Adam\Desktop\CTF\gamemodes\mm.pwn(263) : warning 204: symbol is assigned a value that is never used: "minutes"
pawn Код:
public NewMapTimer(playerid)
{
MapChange++;
new seconds = CountDownTime % 60;
new minutes = (CountDownTime - seconds) / 60;
GameTextForAll("~b~ Loading new ~w~MAP",4000,3);
SetTimer("StartedNewRound",4000,false);
return 1;
}