Jump to content

Spell duration


Lehcar

Recommended Posts

Is there a way to remove the time limit from certain spells so that they last forever?

If you're on PS3 or XBOX 360, then no. If you're on PC, you can make an Ability type spell in the CS and set up a script effect spell to add it on the first cast, remove it on the second, add it back on the third, remove it on the fourth, etc.

Link to comment
Share on other sites

Thank you. any advice for scripting?

It would probably look something like:

 

scn NameOfScript

Short Cast

Beging ScriptEffectStart
 If Cast == 0
   player.AddSpell SpellID
   Set Cast to 1
 Endif
 Esleif Cast ==1
   Player.RemoveSpell SpellID
   Set Cast to 0
 Endif
End

 

Keep in mid that whatever spell you put in place of SpellID needs to be an Ability type spell.

Link to comment
Share on other sites

  • Recently Browsing   0 members

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