Author Topic: A problem  (Read 1137 times)

Beary

  • Newbie
  • *
  • Posts: 39
  • Karma: +2/-5
    • View Profile
A problem
« on: February 16, 2015, 12:45:46 am »
 :)Hello, I have a question!
I want to try to shoot a video, but I don't know how to hide the game player head name and blood, who can help me?

Beary

  • Newbie
  • *
  • Posts: 39
  • Karma: +2/-5
    • View Profile
Re: A problem
« Reply #1 on: February 16, 2015, 05:37:17 am »
You can disable nametag with the player function: Player.Nametag, using booleans

Disable Nametag:
Code: [Select]
Player.Nametag = false;Enable Nametag:
Code: [Select]
Player.Nametag = true;
WiKi example:

Code: [Select]
function onPlayerCommand( pPlayer, szCommand, szText )
{
if ( szCommand == "tagon" )
{
pPlayer.Nametag = true;
}
else if ( szCommand == "tagoff" )
{
pPlayer.Nametag = false;
}

return 1;
}

Blood, i don't know.
Very Thanks :)

 

© Liberty Unleashed Team.