Hi guys,
I'm having an issue with using yanfly's command battle command list script. The Script is located here. So the issue that I'm having is that I can't get the note tags from the script to work on the actors, classes, or subclasses.
For example.
I have one class that has a skill list of
Attack
Defend
Items
Then I change the class and it changes to
Attack
Magic
Items
For some reason the class list won't change at all and will stick to the default list.
This is fine and well until I get a class change and it retains certain skills even though changing the class it won't learn those skills. . It's driving me crazy.
I even tested it by putting the command list in the actor notebox as well and still no change. I'll be happy to provide any additional info you need.
Yanfly Battle Command list Issue
● ARCHIVED · READ-ONLY
-
-
Use this snippet:
Code:class Game_Actor < Game_Battler alias cskyami_change_class change_class def change_class(class_id, keep_exp = true) #set to false to restart EXP cskyami_change_class(class_id, keep_exp) init_skills refresh endend -
Nope didn't work. I found a work around though that works by using this script in conjunction with yanfly's battle command line. The only problem is that if they don't change their class after learning one, they'll still retain the skills on the command bar until they make a quick skill change. I'll see about setting up an event that causes the player to unequip their current class and equipping the new one when they change the class, that way the new class causes the player to swap skills.
My thought process is to basically make a swap using an autobattle sorta like when you gain skills in Bravely Default. Then when the player leaves the example battle they can reequip the class they were using.