SA-MP Forums Archive
RCON Admin Banned? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP (https://sampforum.blast.hk/forumdisplay.php?fid=3)
+--- Forum: Client Support (https://sampforum.blast.hk/forumdisplay.php?fid=16)
+--- Thread: RCON Admin Banned? (/showthread.php?tid=84487)



RCON Admin Banned? - SampFreak09 - 01.07.2009

Recently, i was playing a gamemode i have downlaoded fomr here, All Credits go to them,butt i have one problem... i went ino game i didnt log in as admin and i spawned with minigun cause i had admin filterscript and the server auto banned me? soo now i cant unban my ip so can u pzl help me?? i REALLY want to go into my server again help would be mmuch appreciated.


Re: RCON Admin Banned? - Gappy - 01.07.2009

Open samp.ban with notepad and delete your IP from it


Re: RCON Admin Banned? - Dylan_Madigan69 - 26.03.2013

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.