I am writing a script in which I want the keywords for the cuirass and ONLY the cuirass. Basically, this...
If ( Self.WornHasKeyword(ArmorCuirass) )
If ( Self.WornHasKeyword(ArmorMaterialDaedric) )
If ( Self.WornHasKeyword(ArmorMaterialDaedric) )
Please, oh please tell me that it will only pick up both keywords if they are attached to the same item. Would I have any better luck if I used something like...
If ( Self.WornHasKeyword(ArmorCuirass) && Self.WornHasKeyword(ArmorMaterialDaedric))
What I'm afraid of is if the wearer is dressed unevenly. Basically, if he is wearing a fur cuirass, which would satisfy the first part, but a Daedric helmet, satisfying the second part.
Is there any way to detect what the wearer is wearing in a certain slot... then testing the keywords from that slot?
Thank you! And PLEASE say there's hope!
