
it will work as "3 times per 24 hours" which is not the same thing. This is a simple solution, and not a concrete "3 times per day" based on the actual day of the game. You will have to apply a condition when you add this magic effect in your lesser power so that the Global Variable UseCount must be less than 3 in order for the effect to fire. GlobalVariable Property UseCount AutoEvent OnEffectStart(Actor akTarget, Actor akCaster) UseCount.Value += 1 If (UseCount.Value = 1) RegisterForSingleUpdateGameTime(24) EndIfEndEventEvent OnUpdateGameTime() UseCount.Value = 0EndEvent Then in your spell for the lesser power it only fires the magic effect when the property value is less than 3 You can add a very simple script to your magic effect that basically increments a global variable by 1 each time it is used with additional conditions to allow it to reset every 24 hours.
