hi

i don't know why this crash my HLDS;
PHP Code:
#include <amxmodx>
#include <engine>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "[R]ak"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /remove", "cmdRemove")
}
public cmdRemove(id) {
if(!is_user_alive(id))
return PLUGIN_HANDLED
new Ent = find_ent_by_owner(-1, "weapon_knife", id)
remove_entity(Ent)
return PLUGIN_HANDLED
}
any idea?
thanks for reading
__________________