Chaos Project

RPG Maker => RPG Maker Scripts => Script Requests => Topic started by: k9inpoop on November 25, 2008, 05:42:24 pm

Title: Leveling script
Post by: k9inpoop on November 25, 2008, 05:42:24 pm
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
Title: Re: Leveling script
Post by: ozoke on November 25, 2008, 05:46:21 pm
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
Title: Re: Leveling script
Post by: k9inpoop on November 25, 2008, 05:49:26 pm
can someone make a demo for it so i know how to use it
Title: Re: Leveling script
Post by: ozoke on November 25, 2008, 05:53:39 pm
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.
Title: Re: Leveling script
Post by: Starrodkirby86 on November 25, 2008, 08:12:59 pm
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".