If you create a tempentity, does the resulting created entity have an ID number?, or specific classname? or some method of identifing the created entity?
For example, if I use the following routine to create a model...
Code:
message_begin(MSG_BROADCAST, SVC_TEMPENTITY)
write_byte(106)
write_coord(org[0])
write_coord(org[1])
write_coord(org[2])
write_coord(vel[0])
write_coord(vel[1])
write_coord(vel[2])
write_angle(0)
write_short(g_modelID)
write_byte(sound) // 1=metal, 2=wood,
write_byte(100)
message_end()
does the new temp model have an ID?
__________________