├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── appveyor.yml ├── lib ├── fopen_s │ ├── fopen_s.cpp │ └── fopen_s.h ├── raknet │ ├── BitStream.cpp │ ├── BitStream.h │ └── NetworkTypes.h ├── sdk │ ├── amx │ │ ├── amx.h │ │ ├── getch.h │ │ └── sclinux.h │ ├── amxplugin.cpp │ ├── plugin.h │ └── plugincommon.h ├── snprintf │ ├── snprintf.cpp │ └── snprintf.h ├── strlcpy │ ├── strlcpy.cpp │ └── strlcpy.h └── subhook │ ├── .editorconfig │ ├── .gitattributes │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── README.md │ ├── appveyor.yml │ ├── subhook.c │ ├── subhook.h │ ├── subhook_private.h │ ├── subhook_unix.c │ ├── subhook_windows.c │ ├── subhook_x86.c │ └── tests │ ├── .gitignore │ ├── CMakeLists.txt │ ├── foo.cpp │ ├── foo_32.asm │ ├── foo_64_unix.asm │ ├── foo_64_win.asm │ ├── foo_main.c │ ├── foo_main.cpp │ ├── test.c │ └── test.cpp ├── pawn.json ├── sampsvr_files ├── FCNPC.inc ├── colandreas.inc ├── filterscripts │ ├── bodyguards.pwn │ ├── citizens.pwn │ ├── missions.pwn │ ├── sample.pwn │ └── traindrivers_pilots.pwn ├── mapandreas.inc ├── npcmodes │ └── recordings │ │ ├── at400_ls_to_lv.rec │ │ ├── at400_lv_to_sf.rec │ │ ├── at400_sf_to_ls.rec │ │ ├── mission_1.rec │ │ ├── mission_2.rec │ │ ├── mission_3.rec │ │ ├── mission_4.rec │ │ ├── train_ls_to_sf.rec │ │ ├── train_lv_to_ls.rec │ │ └── train_sf_to_lv.rec └── scriptfiles │ └── FCNPC │ └── nodes │ ├── NODES0.DAT │ ├── NODES1.DAT │ ├── NODES10.DAT │ ├── NODES11.DAT │ ├── NODES12.DAT │ ├── NODES13.DAT │ ├── NODES14.DAT │ ├── NODES15.DAT │ ├── NODES16.DAT │ ├── NODES17.DAT │ ├── NODES18.DAT │ ├── NODES19.DAT │ ├── NODES2.DAT │ ├── NODES20.DAT │ ├── NODES21.DAT │ ├── NODES22.DAT │ ├── NODES23.DAT │ ├── NODES24.DAT │ ├── NODES25.DAT │ ├── NODES26.DAT │ ├── NODES27.DAT │ ├── NODES28.DAT │ ├── NODES29.DAT │ ├── NODES3.DAT │ ├── NODES30.DAT │ ├── NODES31.DAT │ ├── NODES32.DAT │ ├── NODES33.DAT │ ├── NODES34.DAT │ ├── NODES35.DAT │ ├── NODES36.DAT │ ├── NODES37.DAT │ ├── NODES38.DAT │ ├── NODES39.DAT │ ├── NODES4.DAT │ ├── NODES40.DAT │ ├── NODES41.DAT │ ├── NODES42.DAT │ ├── NODES43.DAT │ ├── NODES44.DAT │ ├── NODES45.DAT │ ├── NODES46.DAT │ ├── NODES47.DAT │ ├── NODES48.DAT │ ├── NODES49.DAT │ ├── NODES5.DAT │ ├── NODES50.DAT │ ├── NODES51.DAT │ ├── NODES52.DAT │ ├── NODES53.DAT │ ├── NODES54.DAT │ ├── NODES55.DAT │ ├── NODES56.DAT │ ├── NODES57.DAT │ ├── NODES58.DAT │ ├── NODES59.DAT │ ├── NODES6.DAT │ ├── NODES60.DAT │ ├── NODES61.DAT │ ├── NODES62.DAT │ ├── NODES63.DAT │ ├── NODES7.DAT │ ├── NODES8.DAT │ └── NODES9.DAT └── src ├── CAddress.cpp ├── CAddress.hpp ├── CAnimationInfo.cpp ├── CAnimationInfo.hpp ├── CCallbackManager.cpp ├── CCallbackManager.hpp ├── CExceptionHandler.cpp ├── CExceptionHandler.hpp ├── CFunctions.cpp ├── CFunctions.hpp ├── CHooks.cpp ├── CHooks.hpp ├── CMaths.cpp ├── CMaths.hpp ├── CMovePath.cpp ├── CMovePath.hpp ├── CNode.cpp ├── CNode.hpp ├── CNodeManager.cpp ├── CNodeManager.hpp ├── CPlayback.cpp ├── CPlayback.hpp ├── CPlayerData.cpp ├── CPlayerData.hpp ├── CPlayerManager.cpp ├── CPlayerManager.hpp ├── CRecordManager.cpp ├── CRecordManager.hpp ├── CSAMPRakPeer.hpp ├── CServer.cpp ├── CServer.hpp ├── CUtils.cpp ├── CUtils.hpp ├── CVector.h ├── CVector2D.h ├── CVehicleInfo.cpp ├── CVehicleInfo.hpp ├── CWeaponInfo.cpp ├── CWeaponInfo.hpp ├── Common.h ├── Exports.def ├── ExportsDL.def ├── FCNPC.inc.in ├── Main.cpp ├── Main.hpp ├── Natives.cpp ├── Natives.hpp ├── RPCs.cpp ├── RPCs.h ├── Structs.h └── vendor ├── ColAndreas ├── ColAndreasCommon.h ├── ColAndreasDatabaseReader.cpp ├── ColAndreasDatabaseReader.h ├── ColObject.cpp ├── ColObject.h ├── DynamicWorld.cpp ├── DynamicWorld.h ├── LodArray.h ├── Natives.cpp ├── Natives.h ├── WaterArray.h ├── dffread.cpp ├── renderware.cpp └── renderware.h └── MapAndreas ├── MapAndreas.cpp ├── MapAndreas.h ├── natives.cpp └── natives.h /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/appveyor.yml -------------------------------------------------------------------------------- /lib/fopen_s/fopen_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/fopen_s/fopen_s.cpp -------------------------------------------------------------------------------- /lib/fopen_s/fopen_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/fopen_s/fopen_s.h -------------------------------------------------------------------------------- /lib/raknet/BitStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/raknet/BitStream.cpp -------------------------------------------------------------------------------- /lib/raknet/BitStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/raknet/BitStream.h -------------------------------------------------------------------------------- /lib/raknet/NetworkTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/raknet/NetworkTypes.h -------------------------------------------------------------------------------- /lib/sdk/amx/amx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/sdk/amx/amx.h -------------------------------------------------------------------------------- /lib/sdk/amx/getch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/sdk/amx/getch.h -------------------------------------------------------------------------------- /lib/sdk/amx/sclinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/sdk/amx/sclinux.h -------------------------------------------------------------------------------- /lib/sdk/amxplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/sdk/amxplugin.cpp -------------------------------------------------------------------------------- /lib/sdk/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/sdk/plugin.h -------------------------------------------------------------------------------- /lib/sdk/plugincommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/sdk/plugincommon.h -------------------------------------------------------------------------------- /lib/snprintf/snprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/snprintf/snprintf.cpp -------------------------------------------------------------------------------- /lib/snprintf/snprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/snprintf/snprintf.h -------------------------------------------------------------------------------- /lib/strlcpy/strlcpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/strlcpy/strlcpy.cpp -------------------------------------------------------------------------------- /lib/strlcpy/strlcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/strlcpy/strlcpy.h -------------------------------------------------------------------------------- /lib/subhook/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/subhook/.editorconfig -------------------------------------------------------------------------------- /lib/subhook/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /lib/subhook/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/subhook/.travis.yml -------------------------------------------------------------------------------- /lib/subhook/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/subhook/CMakeLists.txt -------------------------------------------------------------------------------- /lib/subhook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/subhook/README.md -------------------------------------------------------------------------------- /lib/subhook/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/subhook/appveyor.yml -------------------------------------------------------------------------------- /lib/subhook/subhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/subhook/subhook.c -------------------------------------------------------------------------------- /lib/subhook/subhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/subhook/subhook.h -------------------------------------------------------------------------------- /lib/subhook/subhook_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/subhook/subhook_private.h -------------------------------------------------------------------------------- /lib/subhook/subhook_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/subhook/subhook_unix.c -------------------------------------------------------------------------------- /lib/subhook/subhook_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/subhook/subhook_windows.c -------------------------------------------------------------------------------- /lib/subhook/subhook_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/subhook/subhook_x86.c -------------------------------------------------------------------------------- /lib/subhook/tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | foo 3 | a.out 4 | -------------------------------------------------------------------------------- /lib/subhook/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/subhook/tests/CMakeLists.txt -------------------------------------------------------------------------------- /lib/subhook/tests/foo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/subhook/tests/foo.cpp -------------------------------------------------------------------------------- /lib/subhook/tests/foo_32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/subhook/tests/foo_32.asm -------------------------------------------------------------------------------- /lib/subhook/tests/foo_64_unix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/subhook/tests/foo_64_unix.asm -------------------------------------------------------------------------------- /lib/subhook/tests/foo_64_win.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/subhook/tests/foo_64_win.asm -------------------------------------------------------------------------------- /lib/subhook/tests/foo_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/subhook/tests/foo_main.c -------------------------------------------------------------------------------- /lib/subhook/tests/foo_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/subhook/tests/foo_main.cpp -------------------------------------------------------------------------------- /lib/subhook/tests/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/subhook/tests/test.c -------------------------------------------------------------------------------- /lib/subhook/tests/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/lib/subhook/tests/test.cpp -------------------------------------------------------------------------------- /pawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/pawn.json -------------------------------------------------------------------------------- /sampsvr_files/FCNPC.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/FCNPC.inc -------------------------------------------------------------------------------- /sampsvr_files/colandreas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/colandreas.inc -------------------------------------------------------------------------------- /sampsvr_files/filterscripts/bodyguards.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/filterscripts/bodyguards.pwn -------------------------------------------------------------------------------- /sampsvr_files/filterscripts/citizens.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/filterscripts/citizens.pwn -------------------------------------------------------------------------------- /sampsvr_files/filterscripts/missions.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/filterscripts/missions.pwn -------------------------------------------------------------------------------- /sampsvr_files/filterscripts/sample.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/filterscripts/sample.pwn -------------------------------------------------------------------------------- /sampsvr_files/filterscripts/traindrivers_pilots.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/filterscripts/traindrivers_pilots.pwn -------------------------------------------------------------------------------- /sampsvr_files/mapandreas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/mapandreas.inc -------------------------------------------------------------------------------- /sampsvr_files/npcmodes/recordings/at400_ls_to_lv.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/npcmodes/recordings/at400_ls_to_lv.rec -------------------------------------------------------------------------------- /sampsvr_files/npcmodes/recordings/at400_lv_to_sf.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/npcmodes/recordings/at400_lv_to_sf.rec -------------------------------------------------------------------------------- /sampsvr_files/npcmodes/recordings/at400_sf_to_ls.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/npcmodes/recordings/at400_sf_to_ls.rec -------------------------------------------------------------------------------- /sampsvr_files/npcmodes/recordings/mission_1.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/npcmodes/recordings/mission_1.rec -------------------------------------------------------------------------------- /sampsvr_files/npcmodes/recordings/mission_2.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/npcmodes/recordings/mission_2.rec -------------------------------------------------------------------------------- /sampsvr_files/npcmodes/recordings/mission_3.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/npcmodes/recordings/mission_3.rec -------------------------------------------------------------------------------- /sampsvr_files/npcmodes/recordings/mission_4.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/npcmodes/recordings/mission_4.rec -------------------------------------------------------------------------------- /sampsvr_files/npcmodes/recordings/train_ls_to_sf.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/npcmodes/recordings/train_ls_to_sf.rec -------------------------------------------------------------------------------- /sampsvr_files/npcmodes/recordings/train_lv_to_ls.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/npcmodes/recordings/train_lv_to_ls.rec -------------------------------------------------------------------------------- /sampsvr_files/npcmodes/recordings/train_sf_to_lv.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/npcmodes/recordings/train_sf_to_lv.rec -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES0.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES0.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES1.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES1.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES10.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES10.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES11.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES11.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES12.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES12.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES13.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES13.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES14.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES14.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES15.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES15.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES16.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES16.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES17.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES17.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES18.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES18.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES19.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES19.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES2.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES2.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES20.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES20.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES21.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES21.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES22.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES22.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES23.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES23.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES24.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES24.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES25.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES25.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES26.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES26.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES27.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES27.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES28.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES28.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES29.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES29.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES3.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES3.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES30.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES30.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES31.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES31.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES32.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES32.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES33.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES33.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES34.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES34.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES35.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES35.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES36.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES36.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES37.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES37.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES38.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES38.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES39.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES39.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES4.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES4.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES40.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES40.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES41.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES41.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES42.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES42.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES43.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES43.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES44.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES44.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES45.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES45.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES46.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES46.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES47.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES47.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES48.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES48.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES49.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES49.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES5.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES5.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES50.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES50.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES51.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES51.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES52.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES52.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES53.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES53.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES54.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES54.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES55.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES55.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES56.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES56.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES57.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES57.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES58.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES58.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES59.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES59.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES6.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES6.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES60.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES60.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES61.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES61.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES62.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES62.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES63.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES63.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES7.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES7.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES8.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES8.DAT -------------------------------------------------------------------------------- /sampsvr_files/scriptfiles/FCNPC/nodes/NODES9.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/sampsvr_files/scriptfiles/FCNPC/nodes/NODES9.DAT -------------------------------------------------------------------------------- /src/CAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CAddress.cpp -------------------------------------------------------------------------------- /src/CAddress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CAddress.hpp -------------------------------------------------------------------------------- /src/CAnimationInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CAnimationInfo.cpp -------------------------------------------------------------------------------- /src/CAnimationInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CAnimationInfo.hpp -------------------------------------------------------------------------------- /src/CCallbackManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CCallbackManager.cpp -------------------------------------------------------------------------------- /src/CCallbackManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CCallbackManager.hpp -------------------------------------------------------------------------------- /src/CExceptionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CExceptionHandler.cpp -------------------------------------------------------------------------------- /src/CExceptionHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CExceptionHandler.hpp -------------------------------------------------------------------------------- /src/CFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CFunctions.cpp -------------------------------------------------------------------------------- /src/CFunctions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CFunctions.hpp -------------------------------------------------------------------------------- /src/CHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CHooks.cpp -------------------------------------------------------------------------------- /src/CHooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CHooks.hpp -------------------------------------------------------------------------------- /src/CMaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CMaths.cpp -------------------------------------------------------------------------------- /src/CMaths.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CMaths.hpp -------------------------------------------------------------------------------- /src/CMovePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CMovePath.cpp -------------------------------------------------------------------------------- /src/CMovePath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CMovePath.hpp -------------------------------------------------------------------------------- /src/CNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CNode.cpp -------------------------------------------------------------------------------- /src/CNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CNode.hpp -------------------------------------------------------------------------------- /src/CNodeManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CNodeManager.cpp -------------------------------------------------------------------------------- /src/CNodeManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CNodeManager.hpp -------------------------------------------------------------------------------- /src/CPlayback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CPlayback.cpp -------------------------------------------------------------------------------- /src/CPlayback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CPlayback.hpp -------------------------------------------------------------------------------- /src/CPlayerData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CPlayerData.cpp -------------------------------------------------------------------------------- /src/CPlayerData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CPlayerData.hpp -------------------------------------------------------------------------------- /src/CPlayerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CPlayerManager.cpp -------------------------------------------------------------------------------- /src/CPlayerManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CPlayerManager.hpp -------------------------------------------------------------------------------- /src/CRecordManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CRecordManager.cpp -------------------------------------------------------------------------------- /src/CRecordManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CRecordManager.hpp -------------------------------------------------------------------------------- /src/CSAMPRakPeer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CSAMPRakPeer.hpp -------------------------------------------------------------------------------- /src/CServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CServer.cpp -------------------------------------------------------------------------------- /src/CServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CServer.hpp -------------------------------------------------------------------------------- /src/CUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CUtils.cpp -------------------------------------------------------------------------------- /src/CUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CUtils.hpp -------------------------------------------------------------------------------- /src/CVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CVector.h -------------------------------------------------------------------------------- /src/CVector2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CVector2D.h -------------------------------------------------------------------------------- /src/CVehicleInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CVehicleInfo.cpp -------------------------------------------------------------------------------- /src/CVehicleInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CVehicleInfo.hpp -------------------------------------------------------------------------------- /src/CWeaponInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CWeaponInfo.cpp -------------------------------------------------------------------------------- /src/CWeaponInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/CWeaponInfo.hpp -------------------------------------------------------------------------------- /src/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/Common.h -------------------------------------------------------------------------------- /src/Exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/Exports.def -------------------------------------------------------------------------------- /src/ExportsDL.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/ExportsDL.def -------------------------------------------------------------------------------- /src/FCNPC.inc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/FCNPC.inc.in -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/Main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/Main.hpp -------------------------------------------------------------------------------- /src/Natives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/Natives.cpp -------------------------------------------------------------------------------- /src/Natives.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/Natives.hpp -------------------------------------------------------------------------------- /src/RPCs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/RPCs.cpp -------------------------------------------------------------------------------- /src/RPCs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/RPCs.h -------------------------------------------------------------------------------- /src/Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/Structs.h -------------------------------------------------------------------------------- /src/vendor/ColAndreas/ColAndreasCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/vendor/ColAndreas/ColAndreasCommon.h -------------------------------------------------------------------------------- /src/vendor/ColAndreas/ColAndreasDatabaseReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/vendor/ColAndreas/ColAndreasDatabaseReader.cpp -------------------------------------------------------------------------------- /src/vendor/ColAndreas/ColAndreasDatabaseReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/vendor/ColAndreas/ColAndreasDatabaseReader.h -------------------------------------------------------------------------------- /src/vendor/ColAndreas/ColObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/vendor/ColAndreas/ColObject.cpp -------------------------------------------------------------------------------- /src/vendor/ColAndreas/ColObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/vendor/ColAndreas/ColObject.h -------------------------------------------------------------------------------- /src/vendor/ColAndreas/DynamicWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/vendor/ColAndreas/DynamicWorld.cpp -------------------------------------------------------------------------------- /src/vendor/ColAndreas/DynamicWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/vendor/ColAndreas/DynamicWorld.h -------------------------------------------------------------------------------- /src/vendor/ColAndreas/LodArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/vendor/ColAndreas/LodArray.h -------------------------------------------------------------------------------- /src/vendor/ColAndreas/Natives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/vendor/ColAndreas/Natives.cpp -------------------------------------------------------------------------------- /src/vendor/ColAndreas/Natives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/vendor/ColAndreas/Natives.h -------------------------------------------------------------------------------- /src/vendor/ColAndreas/WaterArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/vendor/ColAndreas/WaterArray.h -------------------------------------------------------------------------------- /src/vendor/ColAndreas/dffread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/vendor/ColAndreas/dffread.cpp -------------------------------------------------------------------------------- /src/vendor/ColAndreas/renderware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/vendor/ColAndreas/renderware.cpp -------------------------------------------------------------------------------- /src/vendor/ColAndreas/renderware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/vendor/ColAndreas/renderware.h -------------------------------------------------------------------------------- /src/vendor/MapAndreas/MapAndreas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/vendor/MapAndreas/MapAndreas.cpp -------------------------------------------------------------------------------- /src/vendor/MapAndreas/MapAndreas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/vendor/MapAndreas/MapAndreas.h -------------------------------------------------------------------------------- /src/vendor/MapAndreas/natives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/vendor/MapAndreas/natives.cpp -------------------------------------------------------------------------------- /src/vendor/MapAndreas/natives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziggi/FCNPC/HEAD/src/vendor/MapAndreas/natives.h --------------------------------------------------------------------------------