but removing levels so far doesn’t work via conversation
how do i do it via .lua ?
i want to prepare for infinite leveling within DGA. so i want a “De-leveling” script/conversation in DAIL so that you can actually have stuff spawn and play the game @ level 100 normally in DAIL then when you go back to DGA you will relevel back to your real level in one kill
of course stat/skill ups will be 0 > 100 to keep from abuse . anyways
is it possible to reduce a player level via lua or conversation?
nah. ive changed level via editor tool. all that happens if iy ou have more xp than your current level max. youll go back to your “correct” level when oyu gain 1 more point of xp
i just want a way to lower the actual level number itself. not the XP
also. if the max level is x, and you have more xp than x+1 requires, youll still only stay at x until you load a mod that lets you go past x. so in theory my plan would work perfectly if i had an in-game way to reduce JUST the level, but not the xp
because of GiveLevel(unsigned int) I dont think there is anything that would allow for deleveling, besides when you give levels you also give xp, even if it did work you would probably remove the xp as well, would be great if you could literally set the level with lua like
if (playerLevel > 100) then playerLevel = 100;end;