26.03.2013, 12:43
Where ever the script bans you, it is set up where if you have a minigun, ban you. Make it something like this
(replace (( ban(playerid); )) with this
if(IsPlayerAdmin(playerid))
{
return 1;
}
else
{
ban(playerid);
}
it should work , you may have to fix it a little. This will keep it from banning admins. It can be put under any auto-ban code. Of corse like i said, this is just detecting an RCON admin. You can modify this to your likeings.
(replace (( ban(playerid); )) with this
if(IsPlayerAdmin(playerid))
{
return 1;
}
else
{
ban(playerid);
}
it should work , you may have to fix it a little. This will keep it from banning admins. It can be put under any auto-ban code. Of corse like i said, this is just detecting an RCON admin. You can modify this to your likeings.