ok so essentially im attempting to make a cm mod which i understand completely, but the hard part is the spell im attempting to make for my partners, it is supposed to summon a piece of "armor" and equip it to the partners, well my attempt sorta worked, the spell is to last 180 seconds and when the spell runs out unequips the armor. well the scripts saved, and ran fine inworld but didnt equip the "armor" because it ran through every option immediately. ill paste the origanal script i started with which adds 2 pieces and if someone could tell me where i went wrong or even fix it for me that would be great. 3 hours of head smashing has yielded nothing for me -.-. And to ANYONE that can help in anyway thank you in advance. SCN Ztemperal SCRIPT BEGIN ScriptEffectStart Player.AddItem Ztemperal1 1 Player.AddItem Ztemperalhorn1 1 Player.EquipItem Ztemperal1 Player.EquipItem Ztemperalhorn1 Else If (Player.GetItemCount Ztemperal1 == 1) If (Player.GetItemCount Ztemperalhorn1 == 1) Player.UnEquipItem Ztemperal1 Player.UnEquipItem Ztemperalhorn1 Player.RemoveItem Ztemperal1 1 Player.RemoveItem Ztemperalhorn1 1 EndIf END