Poll

how do you make a duplicator wand?

please show how
0 (0%)
please show where to go to be shown
5 (100%)

Total Members Voted: 0

Voting closed: July 03, 2008, 02:03:48 PM

Author Topic: how do you make a duplicator wand?  (Read 1058 times)

im kinda a noob so you need to explain like you would a small illerate (dumb) child.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thanks,                                                                                                                                                             Dr. Bad Bob




1. Search duplicator
2. Download duplicator
3. Open Add-Ons
4. Enable duplicator
5. Start server
6. Type in /duplicator
7. Hit anything with the duplicator
8. Remake it somehwhere else
9. ????
10. Profit

Double Toast... :P
Where is the edit button when you need it?
Download includes the extraction

what program do you use yo open .cs files to downloadthem

what program do you use yo open .cs files to downloadthem
Uhh. I could hardly understand that.

Huh?
what program do you use yo open .cs files to downloadthem
What the crap?

what program do you use yo open .cs files to downloadthem
You use any text editor you want, I personally suggest downloading notepad++, but the standard notepad that comes with windows is fine. Just double click on a .cs file to see the script inside.
im kinda a noob so you need to explain like you would a small illerate (dumb) child.                                    
If you meant how to create a custom wand in script instead of just using it... You basically need to create an item datablock as usual, but at ItemData(yourItem), you need to have ItemData(yourItem : wandItem). This basically makes the yourItem datablock copy all of its properties or information from wandItem.
Code: [Select]
datablock ItemData(buildMoverItem : wandItem)
{
uiName = "Build Mover";
doColorShift = true;
colorShiftColor = "0.471 0.471 0.471 1.000";
image = buildMoverImage;
};
That's what I did. One last thing, if you don't change any properties, torque will crash so watch out for that.