├── FA_artifact.c ├── FA_debug.c ├── FA_debug.h ├── FA_def.h ├── FA_detour.c ├── FA_detour.h ├── FA_dlg.c ├── FA_dlg.h ├── FA_dlg_heroinfo.c ├── FA_eyeofmagi.c ├── FA_function.c ├── FA_function.h ├── FA_heroexp.c ├── FA_heroskill.c ├── FA_loadbar.c ├── FA_lod.c ├── FA_lua.c ├── FA_lua.h ├── FA_main.c ├── FA_mod.c ├── FA_mod.h ├── FA_sskill.c ├── FA_struct.h ├── H3_function.c ├── H3_function.h ├── HoMM3_Fallen_Angel.cbp ├── LICENSE.LGPL ├── README.md ├── detour ├── hookapi.c ├── hookapi.h ├── ldasm.c └── ldasm.h ├── lua ├── lauxlib.h ├── lua.h ├── luaconf.h └── lualib.h ├── luabind ├── FA_LUA_debug.c └── FA_LUA_function.c ├── patch.c ├── patch.h ├── plan.txt └── script ├── FA_DoGlobalEvents.lua └── FA_LoadBar.lua /FA_artifact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_artifact.c -------------------------------------------------------------------------------- /FA_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_debug.c -------------------------------------------------------------------------------- /FA_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_debug.h -------------------------------------------------------------------------------- /FA_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_def.h -------------------------------------------------------------------------------- /FA_detour.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_detour.c -------------------------------------------------------------------------------- /FA_detour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_detour.h -------------------------------------------------------------------------------- /FA_dlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_dlg.c -------------------------------------------------------------------------------- /FA_dlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_dlg.h -------------------------------------------------------------------------------- /FA_dlg_heroinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_dlg_heroinfo.c -------------------------------------------------------------------------------- /FA_eyeofmagi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_eyeofmagi.c -------------------------------------------------------------------------------- /FA_function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_function.c -------------------------------------------------------------------------------- /FA_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_function.h -------------------------------------------------------------------------------- /FA_heroexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_heroexp.c -------------------------------------------------------------------------------- /FA_heroskill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_heroskill.c -------------------------------------------------------------------------------- /FA_loadbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_loadbar.c -------------------------------------------------------------------------------- /FA_lod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_lod.c -------------------------------------------------------------------------------- /FA_lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_lua.c -------------------------------------------------------------------------------- /FA_lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_lua.h -------------------------------------------------------------------------------- /FA_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_main.c -------------------------------------------------------------------------------- /FA_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_mod.c -------------------------------------------------------------------------------- /FA_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_mod.h -------------------------------------------------------------------------------- /FA_sskill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_sskill.c -------------------------------------------------------------------------------- /FA_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/FA_struct.h -------------------------------------------------------------------------------- /H3_function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/H3_function.c -------------------------------------------------------------------------------- /H3_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/H3_function.h -------------------------------------------------------------------------------- /HoMM3_Fallen_Angel.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/HoMM3_Fallen_Angel.cbp -------------------------------------------------------------------------------- /LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/LICENSE.LGPL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/README.md -------------------------------------------------------------------------------- /detour/hookapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/detour/hookapi.c -------------------------------------------------------------------------------- /detour/hookapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/detour/hookapi.h -------------------------------------------------------------------------------- /detour/ldasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/detour/ldasm.c -------------------------------------------------------------------------------- /detour/ldasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/detour/ldasm.h -------------------------------------------------------------------------------- /lua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/lua/lauxlib.h -------------------------------------------------------------------------------- /lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/lua/lua.h -------------------------------------------------------------------------------- /lua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/lua/luaconf.h -------------------------------------------------------------------------------- /lua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/lua/lualib.h -------------------------------------------------------------------------------- /luabind/FA_LUA_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/luabind/FA_LUA_debug.c -------------------------------------------------------------------------------- /luabind/FA_LUA_function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/luabind/FA_LUA_function.c -------------------------------------------------------------------------------- /patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/patch.c -------------------------------------------------------------------------------- /patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/patch.h -------------------------------------------------------------------------------- /plan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/plan.txt -------------------------------------------------------------------------------- /script/FA_DoGlobalEvents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/script/FA_DoGlobalEvents.lua -------------------------------------------------------------------------------- /script/FA_LoadBar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redxu/HoMM3_FA/HEAD/script/FA_LoadBar.lua --------------------------------------------------------------------------------