hi,
i tried to make a sprite but only team mates can see the sprite.
idk what i do wrong that other teams cant see the sprite.
Code:
//...ham Player Spawn
CreateSprite(id)
//.....
public CreateSprite( id )
{
message_begin( MSG_ONE, SVC_TEMPENTITY );
write_byte( TE_PLAYERATTACHMENT );
write_byte( id );
write_coord( 45 );
write_short( g_ct_blue_spr );
write_short( 32767 );
message_end();
}
__________________