entity_set_model????????????????????
You probably just could do this:
Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <engine>
#define PLUGIN "Admin Model"
#define VERSION "1.0"
#define AUTHOR "Zor"
public plugin_init() {
register_plugin("Admin Model", "1.0", "Zor")
}
public plugin_precache()
precache_model("models/player.mdl")
public client_putinserver(id){
new entid
if(is_user_admin(id))
entity_set_model(entid, "models/player.mdl")
return PLUGIN_HANDLED
}
Why can't you do this?