Jump to content

Is there a way to make a lesser power level up your skills?


Ramick

Recommended Posts

Hi, I'm looking into making a spell mod, that will allow you to cast healing and buff spells, using the shout button, so you dont have to unequip weapons or damage spells. The only way i can see to do this is by making them lesser powers, and if that is correct, how would i make it that they will level up the corresponding schools of magic??

Link to comment
Share on other sites

Could be done with a script, attached to the magic effect. I can imagine something like this to make it happen:

 

Event OnEffectStart(Actor akTarget, Actor akCaster)
		if akCaster == Game.GetPlayer()
		       Game.IncrementSkillBy("Destruction", 5)   ;advance destruction skill by 5
		endif
EndEvent

 

Link to comment
Share on other sites

  • Recently Browsing   0 members

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