Author Topic: Change the Nick/HP bar display  (Read 2012 times)

aXXo

  • Newbie
  • *
  • Posts: 7
  • Karma: +0/-0
    • View Profile
Change the Nick/HP bar display
« 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.

Orpheus

  • Newbie
  • *
  • Posts: 49
  • Karma: +1/-0
  • Music is a way of life.
    • View Profile
    • Orphtown UK
Re: Change the Nick/HP bar display
« Reply #1 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.

Windows: A 64-bit/32-bit extension to a 16-bit GUI on an 8-bit OS written for a 4-bit architecture by a 2-bit company who can not stand 1-bit of competition.

Devian

  • Newbie
  • *
  • Posts: 17
  • Karma: +0/-0
    • View Profile
Re: Change the Nick/HP bar display
« Reply #2 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;
}
}
}



 

© Liberty Unleashed Team.