Liberty Unleashed
Liberty Unleashed => Liberty Unleashed Chat => Topic started 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?
-
You can disable nametag with the player function: Player.Nametag, using booleans
Disable Nametag: Player.Nametag = false;Enable Nametag: Player.Nametag = true;
WiKi example:
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 :)