+rep for any help!
#3

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.

pawn Код:
if(team == 1)
if(team == 2)
//etc..
Could be:
pawn Код:
switch(team)
{
case 0: { var = ? }
case 1: { var = ? }
case 2: { var = ? }
//And so on....
}
Reply


Messages In This Thread
+rep for any help! - by ironmen - 19.07.2015, 07:44
Re: +rep for any help! - by mirou123 - 19.07.2015, 08:07
Re: +rep for any help! - by DaniceMcHarley - 19.07.2015, 09:31
AW: +rep for any help! - by Mencent - 19.07.2015, 09:33
Re: +rep for any help! - by ironmen - 19.07.2015, 12:17
Re: +rep for any help! - by mirou123 - 19.07.2015, 12:37
AW: +rep for any help! - by Mencent - 19.07.2015, 14:18

Forum Jump:


Users browsing this thread: 2 Guest(s)