lofgren Posted February 13, 2017 Share Posted February 13, 2017 The main drawback of a cloak spell is that it will apply a script to every actor the PC comes near in combat. The advantage is that the effect will work for NPCs as well. Both methods are workable but I prefer the perk method if the item is meant to be PC only because there are no scripts running and no concentration effects being constantly applied and removed for the engine to keep track of. Link to comment Share on other sites More sharing options...
Masterofnet Posted February 13, 2017 Share Posted February 13, 2017 (edited) On 2/13/2017 at 9:32 PM, RedNinja029 said: Okay well it's worth a try. You can probably word it better than me if you'd like to start a thread with a decent title. Going to make a new fresh plugin for the cloak method of this You can do it. This is a good suggestion though. Creating a blood draining sword that can also be enchanted. How dose that sound? I have to leave very soon so please do it quick, I do have some things to add. Like I said I have to go. Regardless of what you decide to do here is an excellent script to put on your weapon. Reveal hidden contents Scriptname SilverSwordScript extends ObjectReference {v1.4 ReDragon 2014} ; attached to each silver weapon, swords and greatswords Perk PROPERTY SilverPerk auto ; -- EVENTs -- 2 EVENT OnEquipped(Actor akActor) IF akActor.HasPerk(SilverPerk) ; ### USKP 2.0.2. ### Silver weapon perk doesn't need to ELSE akActor.AddPerk(SilverPerk) ENDIF ; ### constantly be added or removed in order to function. EnDEVENT EVENT OnUnEquipped(Actor akActor) ; This also fixes a bug where dual-wielding silverswords, then unequipping one ; silver weapon would remove the perk even if another silver weapon is still equipped. IF (akActor.GetEquippedItemType(0) == 1) RETURN ; - STOP - WeaponType (1 = sword) in leftHand(0) ENDIF ;--------------------- IF (akActor.GetEquippedItemType(1) == 1) RETURN ; - STOP - WeaponType (1 = sword) in rightHand(1) ENDIF ;--------------------- akActor.RemovePerk(SilverPerk) ENDEVENT Edited February 14, 2017 by Masterofnet Link to comment Share on other sites More sharing options...
Recommended Posts