tried that, didn't work... what did I do wrong ?
PHP Code:
new ent = create_entity(ENTITY_info_target)
entity_set_model(ent, MDL_test)
entity_set_edict(ent, EV_ENT_owner, id)
entity_spawn(ent) // this is DispatchSpawn()
entity_set_int(ent, EV_INT_movetype, MOVETYPE_PUSHSTEP)
entity_set_origin(ent, fOrigin)
entity_set_vector(ent, EV_VEC_angles, fAngles)
entity_set_vector(ent, EV_VEC_velocity, fVelocity)
entity_set_vector(ent, EV_VEC_avelocity, Float:{100.0, 100.0, 1000.0})
I just set some values there to see what it does, and no result, just does what it did before, flies out of me xD I tried even removing the angles set, maybe it's a conflict or something, still the same...
__________________