17.11.2009, 09:48
Do i need to use IsPlayerConnected at the begining of every command ? Like this:
Somebody pointed out to me that there's no need for that, so i would just like to confirm ?
Thanks.
pawn Код:
cmd(somecommand, playerid, params[])
{
if(IsPlayerConnected(playerid))
{
// code
}
return 1;
}
Thanks.