SrJulie Posted August 19, 2011 Share Posted August 19, 2011 Typically when I have done quests I use the Player additem command to hand out rewards. However I would like to add an actor effect such as a temporary increase to strength. Is there anyone out there who can tell me the command line I can put in my dialogue quest to accomplish this? Thanks in advance. Julie Link to comment Share on other sites More sharing options...
rickerhk Posted August 19, 2011 Share Posted August 19, 2011 player.CastImmediateOnSelf MyActorEffect orplayer.cios MyActorEffect You can also use an Ingestible with a base effect with a duration instead of an actor effectplayer.cios MyIngestible To remove a Actor effect before it expires: Player.RemoveSpell MyActorEffectTo remove an Ingestible effect: Player.Dispel MyIngestible Or if you want to do it manually, then have a timer to turn if off later:Player.ModAV Strength 2 Then later, Player.ModAV Strength -2 Link to comment Share on other sites More sharing options...
SrJulie Posted August 20, 2011 Author Share Posted August 20, 2011 player.CastImmediateOnSelf MyActorEffect orplayer.cios MyActorEffect You can also use an Ingestible with a base effect with a duration instead of an actor effectplayer.cios MyIngestible To remove a Actor effect before it expires: Player.RemoveSpell MyActorEffectTo remove an Ingestible effect: Player.Dispel MyIngestible Or if you want to do it manually, then have a timer to turn if off later:Player.ModAV Strength 2 Then later, Player.ModAV Strength -2 Thanks much I will give it a try. Juliie Link to comment Share on other sites More sharing options...
Recommended Posts