Would would be faster/more effective? Does it matter?
#1

Would it be faster to do:
Код:
if(giveplayerid != INVALID_PLAYER_ID)
{
   Kick(giveplayerid);
}
or
Код:
if(giveplayerid != INVALID_PLAYER_ID){
Kick(giveplayerid); }
Or does it matter? Just curious.
Reply
#2

pawn Код:
if(giveplayerid != INVALID_PLAYER_ID) return Kick(giveplayerid);
It really doesn't matter...
Reply
#3

Ah, okay. I'm looking for every single way to make this script work the best way, the fastest and most effective.
Reply
#4

This one will help you a lot:

http://forum.sa-mp.com/index.php?topic=79810.0
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)