I got this script:
PHP Code:
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
new model[] = "models/player/mo.mdl"
public plugin_init() {
register_plugin("", "", "");
register_clcmd("say /mo","CmdMo", ADMIN_RCON,"...");
}
public plugin_precache()
{
precache_model(model);
}
public CmdMo(id)
{
SetModel(id)
}
public SetModel(id)
{
cs_set_user_model(id, "mo");
}
The problem is that i want everyone to see my model. Now when people use this command they cant see it, but i can see it. Wheres the problem?
And another question: Is it possible to block round draw messages? ;)