Quote:
Originally Posted by Ynet
the get_user_team part is less relevant i just wanted to give an example on how i want to do it
and unfortnately i don't think i have the new amxx version, any other way to do it with the older versions?
|
If you're putting the rendering, you can just easily use these:
Code:
if(entity_get_int(id, EV_INT_rendermode) == your rendermode)
or
if(entity_get_int(id, EV_INT_renderfx) == your render fx)
or
if(entity_get_float(id, EV_FL_renderamt) == your render amount)
These are engine functions, for fakemeta use these:
Code:
pev(id, pev_rendermode or pev_renderfx or pev_renderamt)