Out of curiosity did you intend this plugin to only change clan tags on admins?
PHP Code:
public OnClientSettingsChanged(iClient) {
new AdminId:iAdmin = GetUserAdmin(iClient);
if (iAdmin != INVALID_ADMIN_ID && GetAdminFlag(iAdmin, Admin_Generic)) {
decl String:szTag[32], String:szClanId[32];
CS_GetClientClanTag(iClient, szTag, sizeof(szTag));
GetConVarString(g_hCvarId, szClanId, sizeof(szClanId));
if (strlen(szTag) > 0 && strlen(szClanId) > 0 && strcmp(szTag, szClanId) == 0) {
CS_SetClientClanTag(iClient, "");
}
}
}
I assume that was a mistake and you want to ignore admins and remove it from non admins heh. Also you can and probably should remove the clan tags include and include the cstrike include since the natives are in 1.4