Liberty Unleashed

Liberty Unleashed => Suggestions => Topic started by: aXXo on December 23, 2010, 08:08:44 pm

Title: Change the Nick/HP bar display
Post by: aXXo on December 23, 2010, 08:08:44 pm
I noticed that even if a player is behind an opaque object, his nickname and HP bar is visible.
Can it be modified like VCMP.......imo you should be able to see the nick and HP only if you can see the target himself.

Its useful for RP servers where the radar is disabled or something like that. Players can be a lil stealthy :)

Also, the nickname is zoomed when you are far from a player.
Though a big name over a distant player is a bit ugly, but its ok and handy in some sitiuations. So i'd rather keep that unchanged.
Title: Re: Change the Nick/HP bar display
Post by: Orpheus on February 12, 2011, 12:26:32 pm
Someone who knows a little more about the UI feel free to correct me, but you can disable it entirely if you wanted, or change the draw distance of it. It's all changeable with scripts IIRC.

Regards Orpheus.
Title: Re: Change the Nick/HP bar display
Post by: Devian on February 12, 2011, 01:46:06 pm
it is from Mess About server script by: VRocker, the "ghost" cmd

Code: [Select]
else if ( szCommand == "ghost" )
{
if ( AdminArray[ pPlayer.ID ] )
{
local alpha = pPlayer.Alpha;
if ( alpha )
{
pPlayer.Alpha = 0;
pPlayer.Nametag = false;
pPlayer.Marker = false;
}
else
{
pPlayer.Alpha = 255;
pPlayer.Nametag = true;
pPlayer.Marker = true;
}
}
}