You shouldn't replace the default CS files. Rename the custom models you're going to upload or you can create a folder in the models directory, call it vip and upload all custom models there, then in the ini you would set models/vip/filename.mdl instead of models/filename.mdl, where "filename" you would replace with the model names.
Also, the file path shouldn't contain spaces in the ini. This is how it should look:
Code:
"weapon_ak47" "models/v_ak47.mdl" "models/p_ak47.mdl"
"weapon_awp" "models/v_awp.mdl" "models/p_awp.mdl"
"weapon_famas" "models/v_famas.mdl" "models/p_famas.mdl"
"weapon_galil" "models/v_galil.mdl" "models/p_galil.mdl"
"weapon_m4a1" "models/v_m4a1.mdl" "models/p_m4a1.mdl"
"weapon_scout" "models/v_scout.mdl" "models/p_scout.mdl"
And if you upload the models to models/vip, it would look like this:
Code:
"weapon_ak47" "models/vip/v_ak47.mdl" "models/vip/p_ak47.mdl"
"weapon_awp" "models/vip/v_awp.mdl" "models/vip/p_awp.mdl"
"weapon_famas" "models/vip/v_famas.mdl" "models/vip/p_famas.mdl"
"weapon_galil" "models/vip/v_galil.mdl" "models/vip/p_galil.mdl"
"weapon_m4a1" "models/vip/v_m4a1.mdl" "models/vip/p_m4a1.mdl"
"weapon_scout" "models/vip/v_scout.mdl" "models/vip/p_scout.mdl"
__________________