I believe it should be like this for the model, I don't know much about the sound.:
Code:
new const example_sound[] = "misc/example/sound.wav"
new const example_model[] = "models/example/example.mdl"
public plugin_precache()
precache_sound(example_sound)
engfunc(EngFunc_PrecacheModel, example_model)
//...
case 1:
{
client_cmd(id, "spk ^"%s^"", example_sound)
cs_set_user_model(id, "example")
}
__________________