How to change the color of a crystal item
Navigate to lua/wos/advswl/crafting/items and open the item you wish to edit
You need to find the "ITEM.OnEquip" value
What you need to do is edit "wep.UseColor" located within the "ITEM.OnEquip" value, if "wep.UseColor" is not already here, them add it. What you should have should look something like this:
ITEM.OnEquip = function( wep )
wep.UseColor = Color( 255, 0, 0 )
end
You need to edit the RGB value within "Color(255,0,0)", to easily choose an RGB color, use this link: https://www.google.com/search?q=color+picker
Example
This example sets the saber color to green (0,255,0)
ITEM.OnEquip = function( wep )
wep.UseColor = Color( 0, 255, 0 )
end