Quote:
|
You can make your own plugins with this code or add this directly to Lilac, tho the former is cleaner.
|
It was as you say early, when i typed sv_cheats it was to "1" on my end, im not sure what plugin does this.
Anyways the code seems to work perfect THANKS alot, i include it in lilac main plugin:
Code:
public Action lilac_allow_cheat_detection(int client, int cheat)
{
if (cheat == CHEAT_CONVAR) {
if (CheckCommandAccess(client, "CVAR_ENABLE", ADMFLAG_CHEATS)) {
return Plugin_Handled;
}
}
return Plugin_Continue;
}
__________________