View Single Post
DarkEnergy
SourceMod Donor
Join Date: Apr 2008
Location: Georgia Tech, MSECE
Old 10-31-2010 , 16:32   Re: [CSS] Slay Losers
Reply With Quote #8

Code:
bool:IsAdminImmunity(client)
{

    if(GetConVarInt(hCvarAdminsImmune) == 0)
    {
        return false;
    }

    new AdminId:admin = GetUserAdmin(client);
    if(admin == INVALID_ADMIN_ID)
    {
        return false;
    }
    return true;
}



TO:


bool:IsAdminImmunity(client)
{

    if(GetConVarInt(hCvarAdminsImmune) == 0)
    {
        return false;
    }

    new AdminId:admin = GetUserAdmin(client);
    if(admin == INVALID_ADMIN_ID)
    {
        return false;
    }
    return GetAdminFlag(admin, Admin_Reservation);
}
__________________
War3:Source Developer
"Your CPU is just a bunch of Muxes"
DarkEnergy is offline