Liberty Unleashed

Liberty Unleashed => Liberty Unleashed Chat => Topic started by: Beary on February 15, 2015, 11:45:46 pm

Title: A problem
Post by: Beary on February 15, 2015, 11:45:46 pm
 :)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?
Title: Re: A problem
Post by: Beary on February 16, 2015, 04: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 :)