Hi Guys,
I need you help. I attatch a sprite on a player with TE_BEAMFOLLOW like this:
PHP Code:
addtrail(id) {
message_begin(MSG_BROADCAST, SVC_TEMPENTITY)
write_byte(22) // TE_BEAMFOLLOW
write_short(id)
write_short(gl_sprite)
write_byte(20)
write_byte(5)
write_byte(255)
write_byte(0)
write_byte(0)
write_byte(100)
message_end()
}
Like that, EVERYONE can see the Trail...
My question is: is there a possiblility to Block the rendering of the trail for a spesific player?
My goal is: show the trail to players who want to see it, and block it for those who dont.
I thnink I have to do this with addToFullPack, but I need a little push into the right direction.
Ty, mottzi