RMRK is retiring.
Server is paid up for the rest of 2026, but the forum may go after that. See here for more information. Please archive or save anything you would like to keep before 2027.
Main Menu
  • Welcome to The RPG Maker Resource Kit.

Request: Script to help solve character stats problem

Started by Ash_XIII, September 17, 2006, 08:28:09 PM

0 Members and 1 Guest are viewing this topic.

Ash_XIII

Hey,
I apologise if this has been posted before, but I've searched as much as i can and still can't find an answer. I've tried everything (unless i'm being stupid and/or have missed something) in RPG maker XP and i'm still lost.  :-\

Problem:
I want to change my main character's stat curves using an event, as i'm allowing the player to choose their own class at the beginning of the game. I know about the stat change function but this is useless to me.

Example: (Just to make things as clear as possible)
Say a player wishes to be a mage. With the current character stat curve settings, when they get towards the higher levels, they end up having a high HP (for a mage) and average Intellgence, SP etc. because the main character's stat curves are all average (setting C or D i think, in the database's character menu). What i want is for the event, in this case, to change the stat curves to reflect more of a mage build and not just change the base stats.

I hope i've explained as clear as possible. Thanks in advance for any help/advice given.

PS: Wasn't quite sure where to post this, but thought here would be the safest bet!
Current (and first) RPG: Souls of the Fallen
Current headache %: 40%

BPKS0

1 person or more game?

Like is there only one character who you can be or is there like... Like final fantasy. Theres always like 8 ppl u can use. Are u making a game were theres only one person u can use?


Shinami

If you mean something along the lines of choosing a starting class, just make several characters with the same graphics but make their stat growth reflect the class picked. I.E:

Character1: Fighter, Arshes. Fighter type stats.
Character2: Mage, Arshes, Mage type stats.
Character3: Ranger, Arshes, Ranger type stats.

Afterwards, when the player picks their class, just add the appropriate character into the party. If the player can choose the character's name, I recommend getting to that AFTER they've picked their class.

Ash_XIII

#3
Good point! Thanks Shinami. Makes more sense that way! I think i was making the problem more complicated than it was  ::)

Told ya i was being stupid  ;D

Edit: I just thought... What happens when i need to refer to the hero? I wont be able to use the \n[001] command because they may not use the first character on the list...
Current (and first) RPG: Souls of the Fallen
Current headache %: 40%

Blizzard

Here“s a little trick. Use the Call script command and write:


$game_variables[1] = $game_party.actor.name


Now use \v[1] in a message and watch. ;)
Be sure to set variable number one just after this message to 0 or any other numeric value with the Variable Operation command.
Get King of Booze for Android, for iOS, for OUYA or for Windows!
Visit our website.
You can also love/hate us on Facebook or the game itself.



Get DropBox, the best free file syncing service there is!

Ash_XIII

#5
Ooooooh! Thanks!!! Me = Happy  ;D ;D ;D

I shouldn't celebrate yet though... Knowing me i'll mess something up!

Thanks again for the help!

Edit: I told you i'd mess it up :(  I get this error when my character activates the event with the message in...

Current (and first) RPG: Souls of the Fallen
Current headache %: 40%