Keeping abilities in the order they are learned

● ARCHIVED · READ-ONLY
Started by Fernyfer775 5 posts View original ↗
  1. 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!
  2. 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.
  3. Thanks Shaz.
  4. *Nudge*
  5. 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