i was wondering if there was any scripts that let me bypass the default lvl (99) and make it go higher if i would like it too...so my characters could go past the 99 mark and go up to 160 or any number if i would like it to. an early thanks to thom ever gets me this
the script in this link should do what you want.
it alos lets you change the max value for all the other parameters as well
http://rmrk.net/index.php/topic,11679.msg146202.html#msg146202
can someone make a demo for it so i know how to use it
if you read through the first few lines you can set the parameters max, then a bit furher down you can give each player a mzx if you want, i cant see how a demo would help explain how it works better than reading it.
This here tells a bit about going over the maximum...
http://forum.chaos-project.com/index.php?topic=2132.0
All the max values are located within Game_Actor. Find any of these lines:
n = [[base_maxhp + @maxhp_plus, 1].max, 9999].min
n = [[Integer(n), 1].max, 9999].min
return [[n, 1].max, 999].min
@exp = [[exp, 9999999].min, 0].max
And edit the value to something higher than it is. It's scattered throughout the Game_Actor script. However, take notice. Once you're doing this, the editor can't follow you anymore in terms of stats. I'm unsure of how to edit levels directly and all, so I'll just tell you if you want to search for more maximums simply use Ctrl + Shift + F in the Script editor and search for "max".