Jump to content

actor effect


SrJulie

Recommended Posts

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

player.CastImmediateOnSelf MyActorEffect or

player.cios MyActorEffect

 

You can also use an Ingestible with a base effect with a duration instead of an actor effect

player.cios MyIngestible

 

To remove a Actor effect before it expires: Player.RemoveSpell MyActorEffect

To 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

player.CastImmediateOnSelf MyActorEffect or

player.cios MyActorEffect

 

You can also use an Ingestible with a base effect with a duration instead of an actor effect

player.cios MyIngestible

 

To remove a Actor effect before it expires: Player.RemoveSpell MyActorEffect

To 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

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...