Author Topic: How do you change the color of a weapon... such as the sword?  (Read 865 times)

Can I change the color of a weapon through the scripting or do i have to change the model?
« Last Edit: December 26, 2008, 10:00:35 PM by Littledude1222 »

Script will do for a basic color change.
Here's an example to make a white sword image:

Code: [Select]
datablock ShapeBaseImageData(whiteSwordImage : swordImage)
{
doColorShift = true;
colorShiftColor = "1 1 1 1"; //This is the RGB value, in decimals. The fourth value is transparency.
};

Script will do for a basic color change.
Here's an example to make a white sword image:

Code: [Select]
datablock ShapeBaseImageData(whiteSwordImage : swordImage)
{
doColorShift = true;
colorShiftColor = "1 1 1 1"; //This is the RGB value, in decimals. The fourth value is transparency.
};
invisible sword? epic.