Lehcar Posted November 20, 2010 Share Posted November 20, 2010 Is there a way to remove the time limit from certain spells so that they last forever? Link to comment Share on other sites More sharing options...
The_Vyper Posted November 20, 2010 Share Posted November 20, 2010 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 More sharing options...
Lehcar Posted November 21, 2010 Author Share Posted November 21, 2010 Thank you. any advice for scripting? Link to comment Share on other sites More sharing options...
The_Vyper Posted November 21, 2010 Share Posted November 21, 2010 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 More sharing options...
Recommended Posts