You declare garras but you never use it.
PHP Code:
new garras[] = "models/garras.mdl"
PHP Code:
precache_model(garras)
PHP Code:
set_pev(id, pev_viewmodel2, garras)
Also are you sure you want to check if CfgFile exists? And if it does it wont precache?
I havent read the whole code but i guess that should be more likely like this:
PHP Code:
public plugin_precache()
{
if( !ReadCfgFile() )
{
log_amx("Configuration file doesn't exist !!")
}
precache_model("models/garras.mdl")
}
Config files are supposed to exist and it is also supposed to precache that model ;)