Okay, Can you try to demostrate what of this i need to delete?
////AdminCheck()
//Type: Support, single file
//Returns whether the client's "rank" is above the level specified (Admin, Super, Host) and returns whether it is ("1") or what level you need to be ("a Super Admin")
//Takes: Client ID, Rank level
//Returns: "1" or text error
function AdminCheck(%client,%level)
{
if(%client $= "1"){return 1;}
if(!%client.isAdmin && !%client.isSuperAdmin && %level == 1){return "\c5an \c3Admin\c5";}
if(!%client.isSuperAdmin && %level == 2){return "\c5a \c3Super Admin\c5";}
if(%client !$= FindLocalClient() && %level !$= "1" && %level !$= "2"){return "\c5the \c3Server Host\c5";}
return "1";
}