Author Topic: Need scripting help here!  (Read 1312 times)

I need someone an experienced scripter to edit this script so it'll make the player's Rhand node dissapear upon mounting, and reappear upon un-mounting.

The script:
nevermind, did it myself

When you're done with this, PM me a download link for it.
« Last Edit: June 22, 2011, 02:27:16 PM by Kiddeh »


really

ok lol

http://dl.dropbox.com/u/11058668/Item_Shield.cs

Try that. I literally just added two lines.
« Last Edit: June 20, 2011, 01:16:30 AM by otto-san »

really

ok lol

http://dl.dropbox.com/u/11058668/Item_Shield.cs

Try that. I literally just added two lines.

i never realized how stuff i was at scripting in torque engine until today

will do tomorrow
can you guarantee me that this will work, though?

i never realized how stuff i was at scripting in torque engine until today

will do tomorrow
can you guarantee me that this will work, though?
No, I cannot fully.


Code: [Select]
function YOURWEAPONImage::onMount(%this, %obj, %slot)
{
%obj.hidenode("RHand");
//        %obj.hidenode("LHand");
}

function YOURWEAPONImage::onUnMount(%this, %obj, %slot)
{
%obj.unhidenode("RHand");
//        %obj.unhidenode("LHand");
}