Author Topic: Hiding names: Help?  (Read 578 times)

I looked at the Hacky toggle names script and tried to use that %client.player.setShapeNameDistance(0); stuff but it didn't seem to work, is there any way to hide player names some other way? Or am I using this incorrectly? Thanks.

You're using it incorrectly. Make sure you've actually defined %client.

I looked at the Hacky toggle names script and tried to use that %client.player.setShapeNameDistance(0); stuff but it didn't seem to work, is there any way to hide player names some other way? Or am I using this incorrectly? Thanks.
It's not hacky.

I simply found a way around setting the player's name to nothing.

..And what Ephialtes said.

If you are going to use this for your disappear script, as i assume, this script worked for me:

Code: [Select]
function serverCmdInvisible(%client)
{
if(%client.isAdmin || %client.isSuperAdmin)
{
%client.player.hideNode("ALL");         
                %client.player.setShapeNameDistance(0);
        }
}

Odd, I swear I have exactly that, lemme check...

Oops, silly mistake, I forgot to add it in both the non-admin hide and the admin hide parts. Locking.