How to make changes to 3DS Fire Emblem using Paragon Editor

Поделиться
HTML-код
  • Опубликовано: 1 фев 2025

Комментарии • 45

  • @secretagentk1108
    @secretagentk1108 2 года назад +17

    "I didn't need to say that"
    "I'm gonna give him charm because he's charming"
    LOL

    • @secretagentk1108
      @secretagentk1108 2 года назад +2

      Replying to my own comment to throw in that I clicked subscribe. Thinking my version of Paragon is older, as I only have the ability to use it for Awakening

  • @War_On_Fats
    @War_On_Fats 6 месяцев назад +1

    I completely forgot about the output path and got myself involved in a tangled mess of trying to figure out python enough to install rust, C++ build tools, and all the prerequisites listed on the txt file. At the time of this comment, I still haven't succeeded. Thank you for uploading this video and saving me a lot of time.

  • @LegoSensei
    @LegoSensei Год назад +3

    BATTLE OF THE DREAM SPOTTED

  • @unknownpitfall6135
    @unknownpitfall6135 Год назад

    Thank you for this video!

  • @zio2329
    @zio2329 2 года назад +2

    Heya! Question: How do I change existing portraits and replace them with custom ones?

  • @WTF453452
    @WTF453452 Месяц назад

    question lol my stuff saves as a game data bin not like this

  • @windypanda1770
    @windypanda1770  Год назад +3

    Hello, I admit I don't really have a lot of knowledge on how to make changes outside of what the editor supports.
    If you posted a question here and never got a reply, I probably didn't know the answer to it.

  • @gabrielpinheiro6186
    @gabrielpinheiro6186 Год назад +1

    is there an editor like paragon that i can install on my 3ds?

  • @misterymisterio8778
    @misterymisterio8778 Год назад +1

    Is there a way to reset paralogues, to make it like I didnt complete them? aside from loading an older save.

    • @CJ_Fyre0
      @CJ_Fyre0 8 месяцев назад

      im working on smthng like that, rn thats only in save editors, but it will crash ur game, so i recomend making another way to unlock anything from them

  • @4neurismo
    @4neurismo Год назад

    So.. with this program i can add the Spotpass DLC characters on Fire emblem Awakening?

  • @soggycookienugget
    @soggycookienugget Год назад

    Question: how would I change drop rates from dungeons in fire emblem echoes

  • @zerotherebellionleader
    @zerotherebellionleader Год назад

    Hey. I have the Problem when I change the growth rates or something like that and I say save the program didn’t save it. What is the problem?

    • @windypanda1770
      @windypanda1770  Год назад

      From how you're describing it, I think you're saying: You made the changes to growth rate and hit save. However, when you exit out of Paragon and re-enter, the changes are reverted.
      There are a lot of things that could have gone wrong.
      1. Try remaking the project. Did you select the wrong game version? Is your output folder deleted, protected with administrator permissions, or maybe the directory contains non-english?
      2. Paragon opens with a black console that basically shows its status. After you hit save, did the console say the changes were saved?
      3. Are you using Paragon-20? The versions I have downloaded that I know work for sure are Paragon-12, Paragon-16, and Paragon-20.

  • @youraveragenickel2177
    @youraveragenickel2177 2 года назад +1

    Question: how do you spawn new reinforcements? Or even just change the existing ones from an ambush spawns into normal ones?

    • @windypanda1770
      @windypanda1770  2 года назад +2

      Check your dumped RomFS, go into scripts folder and you'll see a bunch of .cmb files with chapter names. You need to edit them with exalt editor. github.com/thane98/Exalt
      These are the scripts that handle what goes on during the chapter. As for how to make ambush reinforcements into normal ones... On chapters with reinforcements, you should be able to find something like:
      event [15] (3,9) {
      $0 = ev::TurnGet();
      if(ev::DifficultyGet() == 0) {
      if($0 == 3) {
      ev::Dispos("Reinforce01", 8);
      ev::DisposWait();
      ev::Dispos("Reinforce02", 8);
      ev::DisposWait();
      ev::Dispos("Reinforce03", 8);
      ev::DisposWait();
      }
      change this into event [12] and add a 0 after the second number in the parenthesis, for example:
      event [12] (3,9,0) {
      $0 = ev::TurnGet();
      if(ev::DifficultyGet() == 0) {
      if($0 == 3) {
      ev::Dispos("Reinforce01", 8);
      ev::DisposWait();
      ev::Dispos("Reinforce02", 8);
      ev::DisposWait();
      ev::Dispos("Reinforce03", 8);
      ev::DisposWait();
      }
      Once you finished the edit, save changes, go inside your mod folder, create a new folder called scripts, then put this thing inside it.

    • @youraveragenickel2177
      @youraveragenickel2177 2 года назад

      @@windypanda1770 Aaahhh! Thank you so much! I've been looking around for how to do this for a bit now with no success.

  • @TheGhost0505a
    @TheGhost0505a 9 месяцев назад

    I downloaded Paragon but it doesn't look like yours, is there a way I can get some help on this thanks

  • @XelaShade
    @XelaShade Год назад

    This doesn't say how you merge files, like I'm trying to merge multiple gamedata.bin.lz files but can't figure out how, is there easy way to do it?

    • @windypanda1770
      @windypanda1770  Год назад

      I’m afraid I don’t know anything like that. Last time I did it, I just made my changes on top of an already existing gamedata.bin.lz.

  • @yogafajarwicaksono8009
    @yogafajarwicaksono8009 2 года назад

    It doesn't work, it works and the edited file is exist, but idk how to apply that to the game, can you tell me how to apply the edit to the game?

    • @windypanda1770
      @windypanda1770  2 года назад

      Check this guide: ruclips.net/video/Z3kN20Nras0/видео.html
      (I don’t have a guide for custom firmware, a simple google search should tell you)

    • @yogafajarwicaksono8009
      @yogafajarwicaksono8009 2 года назад

      @@windypanda1770 I already followed your every steps, 1st I dumped the rom right? Then I edited corrin, then I put the mods into the right folder, I made romfs obviously, but it didn't patched and corrin skills doesn't change, I give him dragonskin starter skill and delete his nobility but it doesn't applied

  • @TheSaiyanGamer25
    @TheSaiyanGamer25 Год назад

    Can you merge multiple mods with this? if so, how do you do it?

    • @windypanda1770
      @windypanda1770  Год назад +1

      I'm assuming the mods you're trying to merge share some files that it wants to edit, so for example the second mod overwrites some of the features for the first mod. If not, just paste the files for the second mod into the first mod and that's it.
      In this case, you'll want to create a new project, paste both of the mods into the project folder, and manually edit in the features that are missing. This is how I created the Gay Awakening compatibility patch for Rebalanced Awakening. Since the data/person/static.bin.lz file, which handles character data, was conflicting, I copied and pasted Gay Awakening into Rebalanced Awakening without overwriting, and then I manually ticked on all supports to be romance-able.
      To my knowledge, there is no simple way to load multiple mods with conflicting files. However, I'm not up to date for recent modding developments, so maybe there is.

    • @TheSaiyanGamer25
      @TheSaiyanGamer25 Год назад

      @@windypanda1770 Thanks a lot, man! i will follow and do what you posted. I really appreciate it.
      Speaking rebalanced awakening mod, looks fun and interesting but should i copy the files from gay awakening mod folder into the rebalanced mod folder or vice versa to fully function? i'm a using a modded 3DS.

  • @alejandrobonillabalderas5629
    @alejandrobonillabalderas5629 2 года назад

    Can I get units as berkut in my army as a unit with this?

    • @darkheroes9276
      @darkheroes9276 Год назад

      ruclips.net/video/_CEF0LKmK20/видео.htmlsi=ub6A1QMnIVl0xdQm

  • @ivanlagayacrus1891
    @ivanlagayacrus1891 2 года назад +1

    possibly a stupid question, but ive been trying to figure out how to change a chapters objective for a *while* now. I see the "win condition" field, but as far as I can tell its only for text prompts

    • @windypanda1770
      @windypanda1770  2 года назад +2

      Hello! You can't do this with paragon. This is script edit territory which you need to do with Exalt.
      1. Download Exalt editor: github.com/thane98/Exalt
      2. Go to scripts folder in your extracted rom. You should see a bunch of "0XX.cmb" and "0XX_Terrain.cmb" files. These numbers correspond to the in-game chapters. Find the file you want to edit, for example "008.cmb" for Chapter 8. Copy this cmb file, make a new "scripts" folder inside your project folder, and paste the file inside the scripts folder. imgur.com/a/Kl5CABr
      3. Open Exalt.jar. Drag and drop your file into the editor. In your case, you need to scroll down until you find event [7] () {.
      ev::ChapterSetWinRule(######) is the line that determines the win condition. 131072 is Rout, 262144 is Defeat the Boss. Change it to the number you want, and save changes by clicking "Compile" button on the top right.
      imgur.com/a/5d7JTS0
      That should do it. Let me know if you're stuck.

    • @ivanlagayacrus1891
      @ivanlagayacrus1891 2 года назад

      @@windypanda1770 you are a champion! i hate to bug you further since ive apparently come to this video barking up the wrong tree, but what would be the considerations for a defend/sieze objective? a cursory search is proving hard to find any info on
      edit: im also noticing sifting through exalt that the formatting is slightly different than you talk about, like this is conquest ch10 (b0010)
      ev::ChapterSetWinRuleLimitTurn(11);
      ev::ChapterSetTrickDragon(3);
      im not sure what "chapter set trick dragon" is, but the winrule seems self explanatory

    • @windypanda1770
      @windypanda1770  2 года назад

      @@ivanlagayacrus1891 sorry for very late reply. The format I posted was for FE Awakening. You should be able to check a chapter that has the winrule you want and you can copy and paste that. Hope you got everything figured.

  • @thisisntevenmyfinalform2025
    @thisisntevenmyfinalform2025 2 года назад

    how do i make this work with skills?

    • @windypanda1770
      @windypanda1770  2 года назад

      For Paragon, you can only change proc rates and which stat the skill procs off (skill, luck). Creating new skills is advanced territory and I don’t know how to do that. Sry

    • @thisisntevenmyfinalform2025
      @thisisntevenmyfinalform2025 2 года назад

      @@windypanda1770 I mean give units skills not create them, im trying to give corrin new skills (like dragonskin astra etc) i save and move the Savedata to my romfs but it doesnt apply to my game :(

    • @korinoriz
      @korinoriz Год назад

      @@thisisntevenmyfinalform2025 I could be wrong but maybe you're just editing the starting skills? You'd need a save editor for the character to have the skills.

    • @drifter4943
      @drifter4943 Год назад

      @@korinoriz Does a save editor exist for FE13 somewhere? I've been looking but not found a working one

  • @MarioMario-yw6zg
    @MarioMario-yw6zg Год назад +1

    오 혹시 한국인이세요?

    • @windypanda1770
      @windypanda1770  Год назад

      네 맞습니다

    • @MarioMario-yw6zg
      @MarioMario-yw6zg Год назад

      @@windypanda1770 헐 각성 리밸런스 패치 재밌게 플레이하고 있어요 만들어주셔서 감사합니다 :)

    • @windypanda1770
      @windypanda1770  Год назад

      @@MarioMario-yw6zg 한국에서 파엠 하는 사람 보기 드문데 반갑네요. 플레이 해주셔서 감사합니다.

  • @Ivan-pv1xs
    @Ivan-pv1xs Год назад +1

    Is it possible to recruit any of the enemy bosses with this editor? Like ie Berkut on fe15? Appreciate it a lot if you can answer 🙏

    • @darkheroes9276
      @darkheroes9276 Год назад

      ruclips.net/video/_CEF0LKmK20/видео.htmlsi=ub6A1QMnIVl0xdQm

    • @Judgementforthe3ds545
      @Judgementforthe3ds545 5 месяцев назад

      You can make custom characters, maps and really anything else. Something I want to do is recreate Fe heroes in fates which is totally feasible. So go nuts!