27.09.2018, 10:58
Please, don't use "stock" until you are making an include -> https://sampforum.blast.hk/showthread.php?tid=570635
Also this code can be shorted:
Also this code can be shorted:
PHP код:
stock IsPlayerSuperAdmin(playerid)
{
if(superadmin[playerid]==1){
return 1;
}
return 0;
}
PHP код:
IsPlayerSuperAdmin(playerid)
return (superadmin[playerid]);