Kirb's thread of things

KIrb’s dump of tutorials/resources/tools


Tutorials

all of my tutorials are .html files

FE1 Map Insertion Tutorial : https://www.dropbox.com/s/xpkuq0epzu368fr/map.html?dl=0

FE1(And NES games in general) Palette Editing Tutorial : https://www.dropbox.com/s/5y784xp1jblw7wb/palette.html?dl=0


Tools

All of my tools are written in C# , And require the .NET Framework to be ran.

FE1 Map Converter(instructions are in the tut) : https://www.dropbox.com/s/ics359kh08a4mll/FE1%20csv%20to%20map%20converter%202.5.exe?dl=0

FEditor Animation Script maker : https://www.dropbox.com/s/zp7rgnq624bn8iw/Feditor%20script%20maker%20alpha%200.9.exe?dl=0

Documentation for it : https://www.dropbox.com/s/gz5vj242iwt6xy1/FEditor%20script%20maker%20doc.html?dl=0

9 Likes

I love you

Yeah i love myself too(pls report glitch if you find some)

1 Like

Updated FEditor Animation Script Maker To Alpha 0.5 ; It now has integrated preset commands combo(updated the doc for it too)

1 Like

Another Update For the script maker , should be the last one for a while because i will start working on a beta version that’ll hopefully add ton of stuff(and i’ll also be working on a special version for emblem magic)

also updated the doc for it

1 Like

soon™

3 Likes

YES! YEEEES! YEEEEEEEEEEEEEEEEES!!!

I caem

gud 4 u den (btw i got class randomization working)

3 Likes

as title suggest alpha as fuck but hey at least now hopefully every character’s starting classes in the game get randomized

2 Likes

We really need a unified randomizer that does every FE game.

Well then time to try something out i guess


dont download the version i posted 10 minutes ago it had a glitch, download this one instead.

y’all are gonna laugh, but i just lost everything

i’m fucking done

where is the take ms to court button

1 Like

so what should i redo first

2 Likes

Fe1 map stuff

You lost everything? But you dropbox links work

I believe he just lost all his source files
and my vote is for feditor script maker


(Probably)The last update to the fe1 csv to map converter.

added features:

  • Before, you had to substract 1 to your map size to have the correct map size, now the program does it for you!

Character changer asm


This is an asm hack i made for fe8 that allow you to change a character using his character Id.

Download

It comes with a definition that makes it easy to use
How to use:
ChangeChar(oldid, newid)
oldid : id of the character you want to replace
newid : id of the character you want the old one to be replaced with

Before:


After:

4 Likes

Modular Table Randomizer


Latest Version Op:
MODULAR TABLE RANDOMIZER(MTR) BETA 1.2
Changelog:
-Added LOOP command, working like so

Code Taken from the Readme: LOOP: LOOP // initiates loop 5 /*Number of time to loop*/ 2 // amount(in hex) to add to the offset each time 0xD00000 15 30 // Randomize offset 0xD00000 + (Current number of loop done * 2) from 15 to 30 5 times

-Made it throw more “readable” exceptions when there is an error in the script(mostly for when you used a wrong number of parameters for a command)
-Optimized the code a bit(that’s only important on my end but figured i’d still add it to the changelog)

Beta 1.1, with an explanation on the ELSE command MODULAR TABLE RANDOMIZER(MTR) BETA 1.1 Changelog: -Added ELSE, Used with IF like so
Code //else must be placed right after the end of The IF statement ELSE 25 21 56 //offset, min random value, max random value

-Started working on the ELSEIF Command(not actually usable as of now)

Beta 1.0, With an explication of how IF statements works MODULAR TABLE RANDOMIZER BETA 1.0 Changelog: -Added IF statements, working like so:
Code IF // tells the MTR that it's an if statement 0x25 // offset of byte to check in hex 0xAB // if byte at offset 0x25 = 0xAB, then 0x26 16 45 // this is just a normal randomization code, so 0x26 = offset 16 = min random value, 45 = max random value

-Added a messageBox Telling you Randomization worked

First version(Alpha 0.9) Changelog And brief summary of functions this is a work in progress of mine, a modular randomizer that works using scripts that tells him : - where to randomize a byte in the rom - the minimum value of that byte - the maximum value of that byte I was supposed to put some templates here for you folks to play with, however, with exams coming tomorrow, i wasn't possible to create some.
Download https://www.dropbox.com/s/977b0mb3mfs0q4p/ZModular%20Table%20Randomizer.zip?dl=0
4 Likes