jonny look at 2nd post, there is "entity_set_int(entid,EV_INT_solid,2)", but that alone dont work, this has to be set too
Code:
entity_set_vector(entid, EV_VEC_mins, MinBox)
entity_set_vector(entid, EV_VEC_maxs, MaxBox)
entity_set_origin(entid, orig)
btw: u can also use:
Code:
pev(entid, pev_size, MinBox, MaxBox) //get site
entity_set_model(entid,"mymodel.mdl") //set_pev(entid,pev_model,"mymodel.mdl") is not working, dont know why
set_pev(entid, pev_size, MinBox, MaxBox) //set size
but its not working on all entitys, on some its give runtime errors (eg. NS b5 if ent is command chair)
__________________