thanks both
but what should I add here
PHP Code:
#include <amxmodx>
#include <engine>
public plugin_init()
{
register_plugin("PLUGIN", "VERSION", "AUTHOR")
register_clcmd("say /myposition", "setori")
}
public setori(id)
{
new VecFlOrigin[3];
entity_get_vector( id, EV_VEC_origin, VecFlOrigin );
}
because this is not working
__________________