├── README.md ├── dbd_injector ├── .gitignore ├── README.md ├── authenticator.py ├── levelup.py ├── rankup.py └── rtm.py └── dbd_killer_finder ├── .gitattributes ├── .gitignore ├── dbd_killer_finder.sln └── dbd_killer_finder ├── dbd_killer_finder.cpp ├── dbd_killer_finder.vcxproj ├── dbd_killer_finder.vcxproj.filters ├── killers.hpp └── wrapper.hpp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioncodes/DeadByDaylight/HEAD/README.md -------------------------------------------------------------------------------- /dbd_injector/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioncodes/DeadByDaylight/HEAD/dbd_injector/.gitignore -------------------------------------------------------------------------------- /dbd_injector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioncodes/DeadByDaylight/HEAD/dbd_injector/README.md -------------------------------------------------------------------------------- /dbd_injector/authenticator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioncodes/DeadByDaylight/HEAD/dbd_injector/authenticator.py -------------------------------------------------------------------------------- /dbd_injector/levelup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioncodes/DeadByDaylight/HEAD/dbd_injector/levelup.py -------------------------------------------------------------------------------- /dbd_injector/rankup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioncodes/DeadByDaylight/HEAD/dbd_injector/rankup.py -------------------------------------------------------------------------------- /dbd_injector/rtm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioncodes/DeadByDaylight/HEAD/dbd_injector/rtm.py -------------------------------------------------------------------------------- /dbd_killer_finder/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioncodes/DeadByDaylight/HEAD/dbd_killer_finder/.gitattributes -------------------------------------------------------------------------------- /dbd_killer_finder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioncodes/DeadByDaylight/HEAD/dbd_killer_finder/.gitignore -------------------------------------------------------------------------------- /dbd_killer_finder/dbd_killer_finder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioncodes/DeadByDaylight/HEAD/dbd_killer_finder/dbd_killer_finder.sln -------------------------------------------------------------------------------- /dbd_killer_finder/dbd_killer_finder/dbd_killer_finder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioncodes/DeadByDaylight/HEAD/dbd_killer_finder/dbd_killer_finder/dbd_killer_finder.cpp -------------------------------------------------------------------------------- /dbd_killer_finder/dbd_killer_finder/dbd_killer_finder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioncodes/DeadByDaylight/HEAD/dbd_killer_finder/dbd_killer_finder/dbd_killer_finder.vcxproj -------------------------------------------------------------------------------- /dbd_killer_finder/dbd_killer_finder/dbd_killer_finder.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioncodes/DeadByDaylight/HEAD/dbd_killer_finder/dbd_killer_finder/dbd_killer_finder.vcxproj.filters -------------------------------------------------------------------------------- /dbd_killer_finder/dbd_killer_finder/killers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioncodes/DeadByDaylight/HEAD/dbd_killer_finder/dbd_killer_finder/killers.hpp -------------------------------------------------------------------------------- /dbd_killer_finder/dbd_killer_finder/wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioncodes/DeadByDaylight/HEAD/dbd_killer_finder/dbd_killer_finder/wrapper.hpp --------------------------------------------------------------------------------