Fallout 1 & 2 reversing and modding resource
Updated 2026-05-09
You can find additional information and code at github.com/rotators
Fallout2.exe
Fallout_1_and_2_IDA68.rar - IDA database
f2_res.dll (High resolution patch)
Modding
Comprehensive Fallout 2 Modding Guide - source
Quantum's Fallout Modding 'How To' Videos
File formats
Artwork
The Complete Fallout 1 & 2 Artwork
Animation
Animation viewer - TypeScript source
Scripting
Fallout 2 opcodes - does not include sfall opcodes. Official Fallout 2 scripts source code
Worldmap
Fallout2 worldmap.txt interactive browser and parser
Watcom
Watcom is the compiler that was used to compile both Fallout 1 and 2.
Watcom does not support the __fastcall keyword except to alias it to null. The register calling convention may be selected by command line switch. (However, IDA uses __fastcall anyway for uniformity.)
Up to 4 registers are assigned to arguments in the order eax, edx, ebx, ecx. Arguments are assigned to registers from left to right.
If any argument cannot be assigned to a register (say it is too large) it, and all subsequent arguments, are assigned to the stack. Arguments assigned to the stack are pushed from right to left. Names are mangled by adding a suffixed underscore.
eax->func(edx, ebx, ecx, push...)
func(eax, edx, ebx, ecx, push...)
ASM
x86 and amd64 instruction reference
Online x86 / x64 Assembler and Disassembler
Reversing tools
IDA 7 freeware - disassembler/debugger
IDA 5 - Old version of IDA, suitable for DOS reversing
HxD - Freeware Hex Editor and Disk Editor ( alternatives)
idbutil - Tool for dumping data from IDA pro databases
IDA database
idbtool.exe --enums Fallout2.idb > enums.txt
idbtool.exe --names Fallout2.idb > names.txt
Fallout tools
| Tool | Author | Description |
|---|---|---|
| Sfall Script Editor | Sfall team | Allows to edit and compile SSL scripts in a convenient way. |
| Dat Explorer 1.43 | Dims | DAT file packer / unpacker. With a graphical interface. |
Sfall
A set of engine modifications that greatly enhances the engine. Includes fixes for bugs in the original engine, allows fallout to run correctly on modern operating systems, and adds additional features for modders.
Binary distros
Source code
Check out the code from the main repo.
DirectX
Main SDK needed is DirectX june 2010. dinput.lib from DirectX august 2007 also needed.
Mirror: DirectX SDK Collection
sfall dev
- Documentation
- Timeslip's page - Original sfall dev (old page)
- FO2 Engine Tweaks (Sfall) @ NMA
- Sfall 1
- NMA discord
- Github: @phobos2077 @NovaRain
Projects
| Project | Description |
|---|---|
| Fallout 1 Reference Edition | Fallout 1 RE project by Alexander Batalov. |
| Fallout 1 Community Edition | Fallout Community Edition is a fully working re-implementation of Fallout, with the same original gameplay, engine bugfixes, and some quality of life improvements, that works (mostly) hassle-free on multiple platforms. |
| Fallout 2 Reference Edition | Fallout 2 RE project by Alexander Batalov. Announcement post |
| Fallout 2 Community Edition | Fallout 2 Community Edition is a fully working re-implementation of Fallout 2, with the same original gameplay, engine bugfixes, and some quality of life improvements, that works (mostly) hassle-free on multiple platforms. |
| Fallout 2 Javascript port | Inactive engine implementation |
| DarkFO, a post-nuclear RPG remake (of Fallout 2) | Inactive engine implementation in TypeScript and Python |
| falltergeist | Opensource crossplatform Fallout 2 game engine written in C++ and SDL. |
| Fallout 2 tweaks | A collection of convenience tweaks, common sense changes, and cheats for Fallout 2. It is highly configurable, any component can be used with or without others. Some components also allow fine tuning. |
| Fallout 2 map editor | Fallout 2 map editor by Jan Simek |
| Klamath | C++ utilities for working with Fallout 1/2 assets |
| Fallout et Tu (Fallout 1 in 2) | A project that aims to bring Fallout 1 into the Fallout 2 engine. |
Misc
- List of Fallout 1 & 2 mods
- Documentation generator notes
- GDC - Classic Game Postmortem: Fallout
- The Nearly Ultimate Fallout Guide
- The Nearly Ultimate Fallout 2 Guide
- Fallout Bible
- Mirror of the official site - based on this repo
Buy
| Game | Stores |
|---|---|
| Fallout | GOG, SteamDB, Epic |
| Fallout 2 | GOG, SteamDB, Epic |