├── .gitignore ├── Config.py ├── Data ├── countryLists │ ├── countryList_de │ ├── countryList_es │ ├── countryList_fr_FR │ ├── countryList_it │ ├── countryList_pl │ ├── countryList_ru │ └── default ├── game.xml ├── termsOfUse │ ├── default │ ├── termsOfUse_de │ ├── termsOfUse_es │ ├── termsOfUse_fr_FR │ ├── termsOfUse_it │ ├── termsOfUse_pl │ └── termsOfUse_ru └── version.txt ├── DataClasses.py ├── Database.py ├── EXAMPLE PACKETS ├── OnlineLog - CONFIRM FRIEND REQUEST.txt ├── OnlineLog - game sess start2.txt ├── OnlineLog - game session start.txt ├── PLAYNOW_PACKET1.txt ├── PLAYNOW_PACKET2.txt └── onlinelog - search users.txt ├── Framework ├── Client │ ├── Plasma │ │ ├── __init__.py │ │ ├── acct.py │ │ ├── asso.py │ │ ├── fsys.py │ │ ├── pnow.py │ │ ├── pres.py │ │ ├── rank.py │ │ ├── recp.py │ │ └── xmsg.py │ ├── Theater │ │ ├── CONN.py │ │ ├── ECHO.py │ │ ├── ECNL.py │ │ ├── EGAM.py │ │ ├── GDAT.py │ │ ├── GLST.py │ │ ├── LLST.py │ │ ├── USER.py │ │ └── __init__.py │ └── __init__.py ├── Server │ ├── Messenger │ │ ├── AUTH.py │ │ ├── EPGT.py │ │ ├── PSET.py │ │ ├── RGET.py │ │ ├── USCH.py │ │ └── __init__.py │ ├── Plasma │ │ ├── __init__.py │ │ ├── acct.py │ │ ├── asso.py │ │ ├── fsys.py │ │ └── rank.py │ ├── Theater │ │ ├── CGAM.py │ │ ├── CONN.py │ │ ├── ECHO.py │ │ ├── EGRS.py │ │ ├── PENT.py │ │ ├── PLVT.py │ │ ├── UBRA.py │ │ ├── UGAM.py │ │ ├── UGDE.py │ │ ├── USER.py │ │ └── __init__.py │ └── __init__.py └── __init__.py ├── Globals.py ├── Init.py ├── LICENSE.md ├── Logger.py ├── NFSC_OnlineMod ├── NFSC_OnlineMod.filters ├── NFSC_OnlineMod.sln ├── NFSC_OnlineMod.vcxproj ├── NFSC_OnlineMod.vcxproj.user ├── README.md ├── bin │ ├── Debug │ │ ├── ConsoleAttachment.asi │ │ ├── NFSC_OnlineMod.asi │ │ ├── NFSC_OnlineMod.ilk │ │ ├── NFSC_OnlineMod.ini │ │ └── NFSC_OnlineMod.pdb │ ├── Release │ │ ├── ConsoleAttachment.asi │ │ ├── NFSC_OnlineMod.asi │ │ ├── NFSC_OnlineMod.ini │ │ ├── NFSC_OnlineMod.iobj │ │ ├── NFSC_OnlineMod.ipdb │ │ └── NFSC_OnlineMod.pdb │ └── World │ │ └── Global │ │ └── Pipeline │ │ └── BuildVersion.moo ├── dllmain.cpp ├── includes │ ├── CPatch.h │ ├── IniReader.h │ ├── hooking │ │ ├── Hooking.Patterns.cpp │ │ ├── Hooking.Patterns.h │ │ └── LICENSE.txt │ ├── injector │ │ ├── LICENSE │ │ ├── assembly.hpp │ │ ├── calling.hpp │ │ ├── gvm │ │ │ ├── gvm.hpp │ │ │ └── translator.hpp │ │ ├── hooking.hpp │ │ ├── injector.hpp │ │ └── utility.hpp │ └── stdafx.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── Network ├── MessengerServer.py ├── PlasmaClient.py ├── PlasmaServer.py ├── TheaterClient.py ├── TheaterServer.py ├── WebServer.py └── __init__.py ├── README.md ├── SSL ├── master.crt └── private.key ├── Utilities ├── Packet.py ├── RandomStringGenerator.py └── __init__.py ├── config.ini └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/.gitignore -------------------------------------------------------------------------------- /Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Config.py -------------------------------------------------------------------------------- /Data/countryLists/countryList_de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Data/countryLists/countryList_de -------------------------------------------------------------------------------- /Data/countryLists/countryList_es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Data/countryLists/countryList_es -------------------------------------------------------------------------------- /Data/countryLists/countryList_fr_FR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Data/countryLists/countryList_fr_FR -------------------------------------------------------------------------------- /Data/countryLists/countryList_it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Data/countryLists/countryList_it -------------------------------------------------------------------------------- /Data/countryLists/countryList_pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Data/countryLists/countryList_pl -------------------------------------------------------------------------------- /Data/countryLists/countryList_ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Data/countryLists/countryList_ru -------------------------------------------------------------------------------- /Data/countryLists/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Data/countryLists/default -------------------------------------------------------------------------------- /Data/game.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Data/game.xml -------------------------------------------------------------------------------- /Data/termsOfUse/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Data/termsOfUse/default -------------------------------------------------------------------------------- /Data/termsOfUse/termsOfUse_de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Data/termsOfUse/termsOfUse_de -------------------------------------------------------------------------------- /Data/termsOfUse/termsOfUse_es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Data/termsOfUse/termsOfUse_es -------------------------------------------------------------------------------- /Data/termsOfUse/termsOfUse_fr_FR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Data/termsOfUse/termsOfUse_fr_FR -------------------------------------------------------------------------------- /Data/termsOfUse/termsOfUse_it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Data/termsOfUse/termsOfUse_it -------------------------------------------------------------------------------- /Data/termsOfUse/termsOfUse_pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Data/termsOfUse/termsOfUse_pl -------------------------------------------------------------------------------- /Data/termsOfUse/termsOfUse_ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Data/termsOfUse/termsOfUse_ru -------------------------------------------------------------------------------- /Data/version.txt: -------------------------------------------------------------------------------- 1 | 795745 -------------------------------------------------------------------------------- /DataClasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/DataClasses.py -------------------------------------------------------------------------------- /Database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Database.py -------------------------------------------------------------------------------- /EXAMPLE PACKETS/OnlineLog - CONFIRM FRIEND REQUEST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/EXAMPLE PACKETS/OnlineLog - CONFIRM FRIEND REQUEST.txt -------------------------------------------------------------------------------- /EXAMPLE PACKETS/OnlineLog - game sess start2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/EXAMPLE PACKETS/OnlineLog - game sess start2.txt -------------------------------------------------------------------------------- /EXAMPLE PACKETS/OnlineLog - game session start.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/EXAMPLE PACKETS/OnlineLog - game session start.txt -------------------------------------------------------------------------------- /EXAMPLE PACKETS/PLAYNOW_PACKET1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/EXAMPLE PACKETS/PLAYNOW_PACKET1.txt -------------------------------------------------------------------------------- /EXAMPLE PACKETS/PLAYNOW_PACKET2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/EXAMPLE PACKETS/PLAYNOW_PACKET2.txt -------------------------------------------------------------------------------- /EXAMPLE PACKETS/onlinelog - search users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/EXAMPLE PACKETS/onlinelog - search users.txt -------------------------------------------------------------------------------- /Framework/Client/Plasma/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Client/Plasma/__init__.py -------------------------------------------------------------------------------- /Framework/Client/Plasma/acct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Client/Plasma/acct.py -------------------------------------------------------------------------------- /Framework/Client/Plasma/asso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Client/Plasma/asso.py -------------------------------------------------------------------------------- /Framework/Client/Plasma/fsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Client/Plasma/fsys.py -------------------------------------------------------------------------------- /Framework/Client/Plasma/pnow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Client/Plasma/pnow.py -------------------------------------------------------------------------------- /Framework/Client/Plasma/pres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Client/Plasma/pres.py -------------------------------------------------------------------------------- /Framework/Client/Plasma/rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Client/Plasma/rank.py -------------------------------------------------------------------------------- /Framework/Client/Plasma/recp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Client/Plasma/recp.py -------------------------------------------------------------------------------- /Framework/Client/Plasma/xmsg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Client/Plasma/xmsg.py -------------------------------------------------------------------------------- /Framework/Client/Theater/CONN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Client/Theater/CONN.py -------------------------------------------------------------------------------- /Framework/Client/Theater/ECHO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Client/Theater/ECHO.py -------------------------------------------------------------------------------- /Framework/Client/Theater/ECNL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Client/Theater/ECNL.py -------------------------------------------------------------------------------- /Framework/Client/Theater/EGAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Client/Theater/EGAM.py -------------------------------------------------------------------------------- /Framework/Client/Theater/GDAT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Client/Theater/GDAT.py -------------------------------------------------------------------------------- /Framework/Client/Theater/GLST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Client/Theater/GLST.py -------------------------------------------------------------------------------- /Framework/Client/Theater/LLST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Client/Theater/LLST.py -------------------------------------------------------------------------------- /Framework/Client/Theater/USER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Client/Theater/USER.py -------------------------------------------------------------------------------- /Framework/Client/Theater/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Client/Theater/__init__.py -------------------------------------------------------------------------------- /Framework/Client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Framework/Server/Messenger/AUTH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Messenger/AUTH.py -------------------------------------------------------------------------------- /Framework/Server/Messenger/EPGT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Messenger/EPGT.py -------------------------------------------------------------------------------- /Framework/Server/Messenger/PSET.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Messenger/PSET.py -------------------------------------------------------------------------------- /Framework/Server/Messenger/RGET.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Messenger/RGET.py -------------------------------------------------------------------------------- /Framework/Server/Messenger/USCH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Messenger/USCH.py -------------------------------------------------------------------------------- /Framework/Server/Messenger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Messenger/__init__.py -------------------------------------------------------------------------------- /Framework/Server/Plasma/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Plasma/__init__.py -------------------------------------------------------------------------------- /Framework/Server/Plasma/acct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Plasma/acct.py -------------------------------------------------------------------------------- /Framework/Server/Plasma/asso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Plasma/asso.py -------------------------------------------------------------------------------- /Framework/Server/Plasma/fsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Plasma/fsys.py -------------------------------------------------------------------------------- /Framework/Server/Plasma/rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Plasma/rank.py -------------------------------------------------------------------------------- /Framework/Server/Theater/CGAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Theater/CGAM.py -------------------------------------------------------------------------------- /Framework/Server/Theater/CONN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Theater/CONN.py -------------------------------------------------------------------------------- /Framework/Server/Theater/ECHO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Theater/ECHO.py -------------------------------------------------------------------------------- /Framework/Server/Theater/EGRS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Theater/EGRS.py -------------------------------------------------------------------------------- /Framework/Server/Theater/PENT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Theater/PENT.py -------------------------------------------------------------------------------- /Framework/Server/Theater/PLVT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Theater/PLVT.py -------------------------------------------------------------------------------- /Framework/Server/Theater/UBRA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Theater/UBRA.py -------------------------------------------------------------------------------- /Framework/Server/Theater/UGAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Theater/UGAM.py -------------------------------------------------------------------------------- /Framework/Server/Theater/UGDE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Theater/UGDE.py -------------------------------------------------------------------------------- /Framework/Server/Theater/USER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Theater/USER.py -------------------------------------------------------------------------------- /Framework/Server/Theater/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Framework/Server/Theater/__init__.py -------------------------------------------------------------------------------- /Framework/Server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Globals.py -------------------------------------------------------------------------------- /Init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Init.py -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Logger.py -------------------------------------------------------------------------------- /NFSC_OnlineMod/NFSC_OnlineMod.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/NFSC_OnlineMod.filters -------------------------------------------------------------------------------- /NFSC_OnlineMod/NFSC_OnlineMod.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/NFSC_OnlineMod.sln -------------------------------------------------------------------------------- /NFSC_OnlineMod/NFSC_OnlineMod.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/NFSC_OnlineMod.vcxproj -------------------------------------------------------------------------------- /NFSC_OnlineMod/NFSC_OnlineMod.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/NFSC_OnlineMod.vcxproj.user -------------------------------------------------------------------------------- /NFSC_OnlineMod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/README.md -------------------------------------------------------------------------------- /NFSC_OnlineMod/bin/Debug/ConsoleAttachment.asi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/bin/Debug/ConsoleAttachment.asi -------------------------------------------------------------------------------- /NFSC_OnlineMod/bin/Debug/NFSC_OnlineMod.asi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/bin/Debug/NFSC_OnlineMod.asi -------------------------------------------------------------------------------- /NFSC_OnlineMod/bin/Debug/NFSC_OnlineMod.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/bin/Debug/NFSC_OnlineMod.ilk -------------------------------------------------------------------------------- /NFSC_OnlineMod/bin/Debug/NFSC_OnlineMod.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/bin/Debug/NFSC_OnlineMod.ini -------------------------------------------------------------------------------- /NFSC_OnlineMod/bin/Debug/NFSC_OnlineMod.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/bin/Debug/NFSC_OnlineMod.pdb -------------------------------------------------------------------------------- /NFSC_OnlineMod/bin/Release/ConsoleAttachment.asi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/bin/Release/ConsoleAttachment.asi -------------------------------------------------------------------------------- /NFSC_OnlineMod/bin/Release/NFSC_OnlineMod.asi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/bin/Release/NFSC_OnlineMod.asi -------------------------------------------------------------------------------- /NFSC_OnlineMod/bin/Release/NFSC_OnlineMod.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/bin/Release/NFSC_OnlineMod.ini -------------------------------------------------------------------------------- /NFSC_OnlineMod/bin/Release/NFSC_OnlineMod.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/bin/Release/NFSC_OnlineMod.iobj -------------------------------------------------------------------------------- /NFSC_OnlineMod/bin/Release/NFSC_OnlineMod.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/bin/Release/NFSC_OnlineMod.ipdb -------------------------------------------------------------------------------- /NFSC_OnlineMod/bin/Release/NFSC_OnlineMod.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/bin/Release/NFSC_OnlineMod.pdb -------------------------------------------------------------------------------- /NFSC_OnlineMod/bin/World/Global/Pipeline/BuildVersion.moo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/bin/World/Global/Pipeline/BuildVersion.moo -------------------------------------------------------------------------------- /NFSC_OnlineMod/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/dllmain.cpp -------------------------------------------------------------------------------- /NFSC_OnlineMod/includes/CPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/includes/CPatch.h -------------------------------------------------------------------------------- /NFSC_OnlineMod/includes/IniReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/includes/IniReader.h -------------------------------------------------------------------------------- /NFSC_OnlineMod/includes/hooking/Hooking.Patterns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/includes/hooking/Hooking.Patterns.cpp -------------------------------------------------------------------------------- /NFSC_OnlineMod/includes/hooking/Hooking.Patterns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/includes/hooking/Hooking.Patterns.h -------------------------------------------------------------------------------- /NFSC_OnlineMod/includes/hooking/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/includes/hooking/LICENSE.txt -------------------------------------------------------------------------------- /NFSC_OnlineMod/includes/injector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/includes/injector/LICENSE -------------------------------------------------------------------------------- /NFSC_OnlineMod/includes/injector/assembly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/includes/injector/assembly.hpp -------------------------------------------------------------------------------- /NFSC_OnlineMod/includes/injector/calling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/includes/injector/calling.hpp -------------------------------------------------------------------------------- /NFSC_OnlineMod/includes/injector/gvm/gvm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/includes/injector/gvm/gvm.hpp -------------------------------------------------------------------------------- /NFSC_OnlineMod/includes/injector/gvm/translator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/includes/injector/gvm/translator.hpp -------------------------------------------------------------------------------- /NFSC_OnlineMod/includes/injector/hooking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/includes/injector/hooking.hpp -------------------------------------------------------------------------------- /NFSC_OnlineMod/includes/injector/injector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/includes/injector/injector.hpp -------------------------------------------------------------------------------- /NFSC_OnlineMod/includes/injector/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/includes/injector/utility.hpp -------------------------------------------------------------------------------- /NFSC_OnlineMod/includes/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/includes/stdafx.h -------------------------------------------------------------------------------- /NFSC_OnlineMod/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /NFSC_OnlineMod/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/stdafx.h -------------------------------------------------------------------------------- /NFSC_OnlineMod/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/NFSC_OnlineMod/targetver.h -------------------------------------------------------------------------------- /Network/MessengerServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Network/MessengerServer.py -------------------------------------------------------------------------------- /Network/PlasmaClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Network/PlasmaClient.py -------------------------------------------------------------------------------- /Network/PlasmaServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Network/PlasmaServer.py -------------------------------------------------------------------------------- /Network/TheaterClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Network/TheaterClient.py -------------------------------------------------------------------------------- /Network/TheaterServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Network/TheaterServer.py -------------------------------------------------------------------------------- /Network/WebServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Network/WebServer.py -------------------------------------------------------------------------------- /Network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Network/__init__.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/README.md -------------------------------------------------------------------------------- /SSL/master.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/SSL/master.crt -------------------------------------------------------------------------------- /SSL/private.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/SSL/private.key -------------------------------------------------------------------------------- /Utilities/Packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Utilities/Packet.py -------------------------------------------------------------------------------- /Utilities/RandomStringGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/Utilities/RandomStringGenerator.py -------------------------------------------------------------------------------- /Utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/config.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xan1242/NFSC_MasterServer/HEAD/requirements.txt --------------------------------------------------------------------------------