Author Topic: Hand Invisable  (Read 2610 times)

is it possible for my hand to be invisable because for my guitar it looks ugly with the hand going through and i wont it to look like hes actually playing

"invisable." Definitely a word.

how do i make just one hand invisable is it possible to script?

I don't think so, I think the "dual swords" addon does that, so you could borrow some of its code.

i dont see the dual swords can you guve me a link plz

It's something like player.hideNode("rhand");  I'm saying this off the top of my head so I could be wrong.

Yea, but replace player with %obj I think...

It could be %cow, variable names are variable names. Plus you have to account for people that have hooks for hands, too.

Also: Invisible* ;)

In the onUse/onEquip/whatever, add
Code: [Select]
%obj.hidenode($rhand0);
%obj.hidenode($rhand1);

and onUnequip or whatever:
Code: [Select]
%obj.client.applybodyparts();
%obj.client.applybodycolors();

I think...I'm not quite sure what the exact functions are for onUse or onUnUse (I don't think they specifically exist, but they probably have some other function that would work).


It could be %cow, variable names are variable names. Plus you have to account for people that have hooks for hands, too.
I was thinking for the usual variable names used in the onmount script.

nottings working :( whats the code and were should i put it ?

does anyone actually know?

so im guessing no ones know how to do it?