ff6edit is a program that can be used to edit the save state information in Final Fantasy VI (or FFIII in the USA) in order to customize your characters however you see fit. It will be written in C++ and run in the GTK environment.
Categories
Role-Playing Games (RPG)License
GNU General Public License version 2.0 (GPLv2)Follow Final Fantasy VI Save State Editor
Other Useful Business Software
Gen AI apps are built with MongoDB Atlas
MongoDB Atlas is the developer-friendly database used to build, scale, and run gen AI and LLM-powered apps—without needing a separate vector database. Atlas offers built-in vector search, global availability across 115+ regions, and flexible document modeling. Start building AI apps faster, all in one place.
Rate This Project
Login To Rate This Project
User Reviews
-
[ Will compile in Ubuntu Zesty 64-bit] [ Open folder ff6edit and do the following: ] [ configure.ac - PKG_CHECK_MODULES, add zlib to end of list ] [ autoreconf --force --install ] [ ./configure ] [ Open folder src and change the files as noted: ] [ ff6.cpp, top.cpp, zsnesloader.cpp, snes9xloader.cpp - at top of file add #include <cstring> ] [ bottom.cpp - guint iCount; changes to gulong iCount; and iCount = (guint)itemCount; changes to iCount = (gulong)itemCount; ] [ top.cpp - sprintf(buffer,"Command%u",i); changes to sprintf(buffer,"Command%lu",i); ] [ zsnesloader.cpp - change "ZSNES Save State File V0.6" to "ZSNES Save State File V" ] [ snes9xloader.cpp - change "#!snes9x" to "#!s9xsnp" and add #include <stdlib.h> ] [ Save state formats have changed since program was written. zsnes was 0.6 and now 143. Still handles that well. snes9x seems to have had such significant changes that program segfaults when trying to open it. ]