[set hue 1152
[add thighboots set hue 1152
or in the script for the item, add Hue = 1152;
The armor pieces dont act like the thighboots.
I can do this for thighboots:
AddItem(new ThighBoots(0x901));
But the armor doesn't seem to have this option.
What can I do to this line or after it to set hue for the item?
AddItem(new FemaleLeatherChest());
And thank you thank you thank you for responding! You rock!
Figured out a way. I'd have figured there'd be a more elegant solution but this'll work.
AddItem(new GemmedCirclet());
AddItem(new FemaleLeatherChest());
AddItem(new ThighBoots(0x901));
AddItem(new ElvenQuiver());
Item chestArmor = this.FindItemOnLayer(Layer.InnerTorso);
if (chestArmor != null)
chestArmor.Hue = 0x901;