So playing around with the XML Level Items and am having an issue, when setting this:
This in theory should create an item that has a level of 10 but can go to a max of 100 yes? well what's happening is it just creates an item that can go to 100.. is something broken or am I doing something wrong?
C#:
public static readonly int DefaultMaxLevel = 10; //Default Max level for items.
public static readonly int MaxLevelsCap = 100; //Number of total levels items can go up to when maxed.
This in theory should create an item that has a level of 10 but can go to a max of 100 yes? well what's happening is it just creates an item that can go to 100.. is something broken or am I doing something wrong?