03.10.2013, 15:35
(
Last edited by Dragonsaurus; 03/10/2013 at 03:42 PM.
Reason: Added explanation and fixed a little grammar mistake.
)
Change this:
to:
Edit: If you want to know, when the first statement (Which contains "if") is true, and the others contain "else if", they will automatically be skipped. The ">=" was actually making the first statement true, so even if it was 1, the second part would get skipped. Hope I was clear.
pawn Code:
if(pCuffTime[i] >= 1)
pawn Code:
if(pCuffTime[i] > 1)