ok I want to make a plugins that whenever players come to my server (which has chicken mod rebirth) I want then to have cl_minmodels disabled, This is what I have so far by copying knekter Fix Client V0.2
Code:
#include <amxmodx>
public plugin_init() {
register_plugin("minmodels", "0.1", "XxKpAznGuYxX")
register_cvar("sv_fix", "1")
register_cvar("sv_minmodels", "0")
}
public client_putinserver(id) {
if(get_cvar_num("sv_fix")) {
new minmodels
minmodels = get_cvar_num("sv_minmodels")
console_cmd(id, "cl_minmodels %i", minmodels)
}
}
I tried it on myself but it doesn't work maybe its because I have immunity? but if thats not it I please help me
__________________