for your huge array of levels i would make a small function and an equation in it which returns the xp. but thats me.
Anyways. proly somewhere inside your plugin u will end up adding a +1 level and then call the menu. If you dont add +1 level and just go by XP i suggest proly having something like oldXPLevel[33]. and just compare current one to oldXP.
what i would do is something like this:
instead of ur huge level array i do this
Code:
public getXP(level)
{
new xp = (2 << (level - 2)) * 100;
return xp;
}