17.09.2010, 21:54
A useful tip for any future commands:
Instead of creating loads of unnecessary structures, such as 'if(adminlevel[playerid] >= 1)', simply do:
if(adminlevel[playerid] < 1) return SendClientMessage(playerid, RED, "No estas autorizado a utilizar este comando.");
By doing this you will keep your structures organised and can easily see what code is where (to prevent your problem from happening again).
-Conroy
Instead of creating loads of unnecessary structures, such as 'if(adminlevel[playerid] >= 1)', simply do:
if(adminlevel[playerid] < 1) return SendClientMessage(playerid, RED, "No estas autorizado a utilizar este comando.");
By doing this you will keep your structures organised and can easily see what code is where (to prevent your problem from happening again).
-Conroy

