16
Modification Help / Re: Hiding names: Help?
« on: May 20, 2009, 10:42:26 AM »
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);
}
}
