Zorkaz Posted July 7, 2019 Share Posted July 7, 2019 I want to make a spell that adds experience points Can someone provide me with a basic script for that? (And yeah, it's probably really simple but I'm so bad with this) Link to comment Share on other sites More sharing options...
Evangela Posted July 7, 2019 Share Posted July 7, 2019 (edited) Off the top of my head.. ActorValue property Experience auto Float property xpts = 200.0 auto Event OnEffectStart(Actor akTarget, Actor akCaster) Game.GetPlayer().ModValue(Experience, xpts) EndEvent The way this works is it should(because I don't have time to test) add 200 points to the total experience gained, which in turn is added to the current xp gained for the current level. Edited July 7, 2019 by Rasikko Link to comment Share on other sites More sharing options...
Zorkaz Posted July 7, 2019 Author Share Posted July 7, 2019 THank you I'll test it out. If it works you might like the results... Link to comment Share on other sites More sharing options...
Recommended Posts