Thread: ChampionsPoints
View Single Post
05/08/21, 12:32 AM   #1
DevIl
Join Date: May 2021
Posts: 2
ChampionsPoints

Hello, maybe anyone has a Solution 4 my problem.
The Funcction 'GetUnitXP('player')' return in my case (CP 1338) 217,954,891.

Then there is the Function 'GetNumChampionXPInChampionPoint(cp) and i think
Code:
 earned=0
 for i = 0, 1337 do       
        n = GetNumChampionXPInChampionPoint(i)       
        earned = earned + n
    end
    return earned + GetPlayerChampionXP()
should return nearly the same result like 'GetUnitXP('player')' , but it deliver in my case : 252,009,786.
That is a difference from 34,054,895!
Does anyone have any explanation for this incredible difference?
  Reply With Quote