Hello! Is there a way to make it so that abilities are kept in the same order that they are learned and not automatically sorted by their database IDs? I found a few XP variants, but none that were compatible with VX ACE.
Thank you!
Keeping abilities in the order they are learned
● ARCHIVED · READ-ONLY
-
-
I've moved this thread to RGSS3 Script Requests. Please be sure to post your threads in the correct forum next time. Thank you.
Only with a script mod. -
Thanks Shaz.
-
*Nudge*
-
What about just removing the sort in the code? (didn't test the code)
Code:class Game_Actor < Game_Battler def skills (@skills | added_skills).collect {|id| $data_skills[id] } end def learn_skill(skill_id) unless skill_learn?($data_skills[skill_id]) @skills.push(skill_id) end endend