hi guys, here is my code:
PHP Code:
new g_Round
public Event_NewRound()
{
g_Round = g_Round + 1
new k
for(k = 0; k < 10; k++)
{
if(5*k == g_Round)
{
//1ststuff
}
if((5*k+1 == g_Round) && (k > 0))
{
//2ndstuff
}
}
}
the problem is, the 1st stuff didn't work at round 5/10/15/... but the 2ndstuff still works at round 6/11/16/...
can anyone help me with this ?
__________________