Author Topic: Transparent Blockhead  (Read 2485 times)

Is there a way i could use to make my blockhead transparent?

localclientconnection.player. setNodeColor(NODENAME,"R G B A");
Where A is alpha, or transparency.
Some node names:
headskin
hat
visor (?)
accent
larm
rarm
lhand
rhand
lshoe
rshoe
pants
chest
femchest
shoulderpads

With the exception of the visor, you can't make players transparent.

i saw amade do it on his server. didnt even have a shadow, except for the tool he was using.

i saw amade do it on his server. didnt even have a shadow, except for the tool he was using.
Was he transparent or completely invisible?

Was he transparent or completely invisible?

oh, right. he was completely invisible.

i saw amade do it on his server. didnt even have a shadow, except for the tool he was using.
That would be a fail mod, and invisibility command that keeps your shadow...

oh, right. he was completely invisible.
That's done by the line
Code: [Select]
findClientByName("PlayerName").player.hideNode("ALL"); in the console. It's irreversible until the player dies or you individually unhide every node they had. You have to be the host to do it.

With the exception of the visor, you can't make players transparent.

No it does work, it just causes sorting errors when you animate.

findclientbyname("YourName").player.setNodeColor(ALL,".5 .5 .5 .5");

Enter that into the console.

Didn't work, there is no ALL node.

With the exception of the visor, you can't make players transparent.
You couldn't be further from the truth. They are just looking at it the wrong way.

%client.hideNode("ALL");
You can replace ALL with the nodes amade said, but if you want to hide everything use ALL. It has to be capitalized too.
%client.unHideNode("ALL"); would unhide all nodes, but impractical.
To restore a client to visibility I would use
commandToClient(%client,'UpdatePrefs');

You couldn't be further from the truth. They are just looking at it the wrong way.

%client.hideNode("ALL");
You can replace ALL with the nodes amade said, but if you want to hide everything use ALL. It has to be capitalized too.
%client.unHideNode("ALL"); would unhide all nodes, but impractical.
To restore a client to visibility I would use
commandToClient(%client,'UpdatePrefs');

applyCharacterPrefs(%client); is faster, and you will also need to do %client.unhidenode("ALL"); before that (same with the clientcmd)

need to do %client.unhidenode("ALL"); before that (same with the clientcmd)
I don't think you do, I just used the clientCmd and I didn't need to unHideNode("ALL"); before it to get back from invisibility.
Haha my head was gone just noticed that.

I made everything on my mini fig semi-trans using Amades way, there was no node for node name hat though.