I want simple Source ar Target source is playing levels , playing level will give xp the amount of xp scaled by a formula
Total XP = Base XP *(1 + (Divinity Level - 1) * Scaling Factor)
which scales based on current Divinity level and Level number
For example
DIVINITY 1
Total XP = 100 * (1 + (1 - 1) * 0.25) = 100 * 1 = 100 XP
DIVINITY 2
Total XP = 100 * (1 + (2 - 1) * 0.25) = 100 * (1 + 0.25) = 100 * 1.25 = 125 XP
DIVINITY 3
Total XP = 100 * (1 + (3 - 1) * 0.25) = 100 * (1 + 0.5) = 100 * 1.5 = 150 XP
------------
Agend is to see how many levels it takes to Reach Divinity Target
And i should put Divinity target
for example i will set Divinity 1 target = 1000 Xp
i want to see how many levels player have to play to reach that target