Thanks for your answer!, but thatīs not what i was looking for

I allready knew that native.
I was searching the list of cs events and i found this one:
http://wiki.amxmodx.org/index.php/Ha...vents#TeamInfo
The question is:
Supossing i save the id of c4 keeper in the variable "c_keep" . Then, i use this event teaminfo as a global event and to alive ("ae"). In the event public i put this:
new c_id = read_data(1); // get the user id
new c_tid = read_data(2); // get the team of player
Then I make this condition:
If(c_id != c_keep){
set_rendering(c_id, kRenderFxGlowShell, Team_glow[c_tid][0],Team_glow[c_tid][1], Team_glow[c_tid][2], kRenderNormal, 96) // where the variables team_glow are already defined
}
else if(c_id == c_keep){
set_rendering(c_id, kRenderFxGlowShell, c4_glow[c_tid][0],c4_glow[c_tid][1], c4_glow[c_tid][2], kRenderNormal, 96)
}
Will this work? If it does, it will works any time?. This last question is the really important. For example, if players gets c4 will glow of certain way and when he drop it will inmediately change his glow?
Thanks for your help!