19.07.2015, 09:31
Well, not an answer to your dini question but if you use 'switch' statement instead of 'if' in your stock that'll be way faster though.
Could be:
pawn Код:
if(team == 1)
if(team == 2)
//etc..
pawn Код:
switch(team)
{
case 0: { var = ? }
case 1: { var = ? }
case 2: { var = ? }
//And so on....
}