• Glowing chat tags
    11 replies, posted
Anyone willing to write up a quick code that displays [VIP], [ADMIN], [OWNER] etc. next to someones name in-game glowing Blue?
Same i would liek this feature
What admin mod are you using?
I remember Pulsar Effect had glowing admin+ ranks. Check the code in the PERP Assmod.
Thats for scoreboard, not chatbox.
[QUOTE=c-unitV5;31273778]Thats for scoreboard, not chatbox.[/QUOTE]Its rather simple to adapt the script. Heres a simple pulsing glow. [lua]local Glow = math.abs(math.sin(CurTime()*2))*255[/lua]
[QUOTE=Science;31274324]Its rather simple to adapt the script. Heres a simple pulsing glow. [lua]local Glow = math.abs(math.sin(CurTime()*2))*255[/lua][/QUOTE] And would you use that as your color? Such as... Color( Glow, 0, 0, 255 ) to get a red glow?
[QUOTE=InfernalCookie;31280074]And would you use that as your color? Such as... Color( Glow, 0, 0, 255 ) to get a red glow?[/QUOTE] Isn't it 255,0,0 for red?
It is indeed. The last 255 is for alpha, which you actually don't need, my fault.
[QUOTE=InfernalCookie;31280074]And would you use that as your color? Such as... Color( Glow, 0, 0, 255 ) to get a red glow?[/QUOTE]Yes, it will glow between red and black.
Im using ULX
[QUOTE=Science;31285912]Yes, it will glow between red and black.[/QUOTE] Cool, thanks. I'll remember that. :)
Sorry, you need to Log In to post a reply to this thread.