RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
[HELP]Class Choose

0 Members and 1 Guest are viewing this topic.

**
Rep: +0/-0Level 86
Hello! Id like to know, how to make a script/event or smt so that i can choose the classes for each of my members in the players group! Is this possible? (including the skills of each class)

*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Most Mature Member2012 Favorite Staff Member2012 Best RPG Maker User (Scripting)2012 Best MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Use of Avatar and Signature Space2011 Best RPG Maker User (Scripting)2011 Most Mature Member2011 Favourite Staff Member2011 Best Veteran2010 Most Mature Member2010 Favourite Staff Member
Yeah, it's possible. There is an event command that allows you to change an actor's class.

For skills though, you will need to be more creative since skills are assigned by actor, not by class. You can use a script if you want, or the other possibility is to arrange it so that you have multiple repeat actors in the database, each with their own skillsets, and when you choose class you switch your hero to be the one with the skillset for that class.

**
Rep: +0/-0Level 86
is there a way to make an NPC to learn the player skills at some lvl? (maybe in exchange with gold)

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
Please learn to use events before you ask for every single thing. All you need is conditional brances to check gold and level.

**
Rep: +0/-0Level 86
guys, i found out how to chance class, but stats dont change! How can i change them?

*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Most Mature Member2012 Favorite Staff Member2012 Best RPG Maker User (Scripting)2012 Best MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Use of Avatar and Signature Space2011 Best RPG Maker User (Scripting)2011 Most Mature Member2011 Favourite Staff Member2011 Best Veteran2010 Most Mature Member2010 Favourite Staff Member
Quote
For skills though, you will need to be more creative since skills are assigned by actor, not by class. You can use a script if you want, or the other possibility is to arrange it so that you have multiple repeat actors in the database, each with their own skillsets, and when you choose class you switch your hero to be the one with the skillset for that class.

Same thing to change the stats

**
Rep: +0/-0Level 86
ok thanks! btw, we could just remove the actor currently in our group, and just add the one chosen, couldnt we?

*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Most Mature Member2012 Favorite Staff Member2012 Best RPG Maker User (Scripting)2012 Best MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Use of Avatar and Signature Space2011 Best RPG Maker User (Scripting)2011 Most Mature Member2011 Favourite Staff Member2011 Best Veteran2010 Most Mature Member2010 Favourite Staff Member

**
Rep: +0/-0Level 86
ok! cause this seems easier, and without so much trouble! thank you for your help!

**
Rep: +0/-0Level 86
sry for double posting, but now that i change the actors, the event that i created to change the name of the hero, changes the name of the actor that have been removed! So, do you know any combination of events/script, to change the name of the actor that have been selected in the beggining?

*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Most Mature Member2012 Favorite Staff Member2012 Best RPG Maker User (Scripting)2012 Best MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Use of Avatar and Signature Space2011 Best RPG Maker User (Scripting)2011 Most Mature Member2011 Favourite Staff Member2011 Best Veteran2010 Most Mature Member2010 Favourite Staff Member
Umm, try this:

Code: [Select]
Name Input Processing: Actor[1]



After you finish choosing class, use this:

Code: [Select]
Script : name = $game_actors[1].name
          : $game_party.actors[0].name = name

That exact code will only work if the chosen party member is in the first slot, but an equivalent code could be used in another situation. And in case you don't know where the script command is, it's at the bottom of the list in the third tab of event commands.

**
Rep: +0/-0Level 86
works like a charm!!!! thank alot, again! youre very helpful!!!