├── .github └── workflows │ └── build-release.yml ├── .gitignore ├── GameInterfaceForToys.py ├── README.md ├── common ├── __init__.py ├── constants.py └── util.py ├── data ├── estim │ ├── pattern_dict.json │ └── patterns │ │ ├── shock_sudden.json │ │ ├── vibrator_standard1LP.json │ │ ├── vibrator_strong1LP.json │ │ ├── vibrator_strong2LP.json │ │ ├── vibrator_verystrong1LP.json │ │ ├── vibrator_veryweak1LP.json │ │ ├── vibrator_weak1LP.json │ │ ├── wpn_impact_arrow_flesh_01.json │ │ ├── wpn_impact_arrow_flesh_02.json │ │ ├── wpn_impact_arrow_flesh_03.json │ │ ├── wpn_impact_arrow_flesh_04.json │ │ ├── wpn_impact_arrow_fleshplayer_01.json │ │ ├── wpn_impact_arrow_fleshplayer_02.json │ │ ├── wpn_impact_arrow_fleshplayer_03.json │ │ ├── wpn_impact_axe_flesh_01.json │ │ ├── wpn_impact_axe_flesh_02.json │ │ ├── wpn_impact_axe_flesh_03.json │ │ ├── wpn_impact_axelarge_flesh_01.json │ │ ├── wpn_impact_axelarge_flesh_02.json │ │ ├── wpn_impact_axelarge_flesh_03.json │ │ ├── wpn_impact_blade_flesh_01.json │ │ ├── wpn_impact_blade_flesh_02.json │ │ ├── wpn_impact_blade_flesh_03.json │ │ ├── wpn_impact_blunt2hand_flesh_01.json │ │ ├── wpn_impact_blunt2hand_flesh_02.json │ │ ├── wpn_impact_blunt2hand_flesh_03.json │ │ ├── wpn_impact_blunt_flesh_01.json │ │ ├── wpn_impact_blunt_flesh_02.json │ │ ├── wpn_impact_blunt_flesh_03.json │ │ ├── wpn_impact_unarmed_flesh_01.json │ │ ├── wpn_impact_unarmed_flesh_02.json │ │ └── wpn_impact_unarmed_flesh_03.json ├── events │ ├── events.yaml │ └── games │ │ ├── bannerlord2 │ │ └── captiveevents.yaml │ │ ├── conanexiles │ │ └── conanexiles.yaml │ │ ├── fallout4 │ │ ├── aaf.yaml │ │ └── deviousdevices.yaml │ │ ├── nightofrevenge │ │ └── nightofrevenge.yaml │ │ ├── skyrim │ │ ├── chaster.yaml │ │ ├── deviousdevices.yaml │ │ ├── deviouslyaccessible.yaml │ │ ├── gift.yaml │ │ ├── minai.yaml │ │ ├── nakeddefeat.yaml │ │ ├── sexlab.yaml │ │ ├── spankthatass.yaml │ │ └── toys.yaml │ │ └── starfield │ │ └── grayfunctions.yaml ├── images │ └── eldenring │ │ ├── health_down.png │ │ └── you_died.png └── vibrators │ └── pattern_dict.json ├── events ├── __init__.py ├── event.py ├── eventloader.py └── functions.py ├── games ├── conanexiles │ ├── ModsShared │ │ └── ConanInterfaceForToys │ │ │ ├── Components │ │ │ └── BP_AC_GIFT_PlayerController.uasset │ │ │ ├── DataTables │ │ │ └── DT_GIFT_EventList.uasset │ │ │ ├── Interfaces │ │ │ └── BPI_GIFT_EventsManager.uasset │ │ │ └── Structs │ │ │ └── ST_GIFT_EventList.uasset │ └── readme.txt ├── fallout4 │ └── dd │ │ └── Scripts │ │ ├── DD │ │ └── DD_Library.pex │ │ └── Source │ │ └── User │ │ └── DD │ │ └── DD_Library.psc ├── nightofrevenge │ ├── BepInEx │ │ └── plugins │ │ │ └── NoRLogger.dll │ ├── NoRLogger_Source │ │ ├── LogPatches.cs │ │ ├── NoRLogger.csproj │ │ ├── NuGet.Config │ │ ├── Plugin.cs │ │ └── credit.txt │ └── README.txt └── skyrim │ └── plugin │ ├── SkyrimToyInterface.esp │ └── scripts │ ├── AcheronHook.pex │ ├── SkyrimToyInterfacePlayerScript.pex │ └── source │ ├── AcheronHook.psc │ └── SkyrimToyInterfacePlayerScript.psc ├── interfaces ├── __init__.py ├── interface.py ├── log_reader.py ├── memory_reader.py ├── pixel_reader.py └── toy_interface.py ├── pattern_generator ├── create_pattern.py ├── requirements.txt ├── util_load_patterns.py ├── util_pattern_space.py └── util_visualise_pattern.py ├── requirements.txt ├── settings.py └── toys ├── __init__.py ├── base.py ├── chastity ├── __init__.py └── chaster │ ├── __init__.py │ └── chaster.py ├── estim ├── __init__.py └── estim.py ├── toy.py ├── vibrators ├── __init__.py ├── buttplugio │ └── buttplug.py ├── kizuna │ └── kizuna.py ├── lovense │ └── lovense.py ├── maustec │ └── edgeomatic3000.py ├── vibrator.py └── xbox_controller │ ├── test.py │ └── xbox_controller.py └── xtoys └── interface.py /.github/workflows/build-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/.github/workflows/build-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/.gitignore -------------------------------------------------------------------------------- /GameInterfaceForToys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/GameInterfaceForToys.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/README.md -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/common/constants.py -------------------------------------------------------------------------------- /common/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/common/util.py -------------------------------------------------------------------------------- /data/estim/pattern_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/pattern_dict.json -------------------------------------------------------------------------------- /data/estim/patterns/shock_sudden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/shock_sudden.json -------------------------------------------------------------------------------- /data/estim/patterns/vibrator_standard1LP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/vibrator_standard1LP.json -------------------------------------------------------------------------------- /data/estim/patterns/vibrator_strong1LP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/vibrator_strong1LP.json -------------------------------------------------------------------------------- /data/estim/patterns/vibrator_strong2LP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/vibrator_strong2LP.json -------------------------------------------------------------------------------- /data/estim/patterns/vibrator_verystrong1LP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/vibrator_verystrong1LP.json -------------------------------------------------------------------------------- /data/estim/patterns/vibrator_veryweak1LP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/vibrator_veryweak1LP.json -------------------------------------------------------------------------------- /data/estim/patterns/vibrator_weak1LP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/vibrator_weak1LP.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_arrow_flesh_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_arrow_flesh_01.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_arrow_flesh_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_arrow_flesh_02.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_arrow_flesh_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_arrow_flesh_03.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_arrow_flesh_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_arrow_flesh_04.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_arrow_fleshplayer_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_arrow_fleshplayer_01.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_arrow_fleshplayer_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_arrow_fleshplayer_02.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_arrow_fleshplayer_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_arrow_fleshplayer_03.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_axe_flesh_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_axe_flesh_01.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_axe_flesh_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_axe_flesh_02.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_axe_flesh_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_axe_flesh_03.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_axelarge_flesh_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_axelarge_flesh_01.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_axelarge_flesh_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_axelarge_flesh_02.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_axelarge_flesh_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_axelarge_flesh_03.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_blade_flesh_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_blade_flesh_01.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_blade_flesh_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_blade_flesh_02.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_blade_flesh_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_blade_flesh_03.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_blunt2hand_flesh_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_blunt2hand_flesh_01.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_blunt2hand_flesh_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_blunt2hand_flesh_02.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_blunt2hand_flesh_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_blunt2hand_flesh_03.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_blunt_flesh_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_blunt_flesh_01.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_blunt_flesh_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_blunt_flesh_02.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_blunt_flesh_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_blunt_flesh_03.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_unarmed_flesh_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_unarmed_flesh_01.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_unarmed_flesh_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_unarmed_flesh_02.json -------------------------------------------------------------------------------- /data/estim/patterns/wpn_impact_unarmed_flesh_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/estim/patterns/wpn_impact_unarmed_flesh_03.json -------------------------------------------------------------------------------- /data/events/events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/events/events.yaml -------------------------------------------------------------------------------- /data/events/games/bannerlord2/captiveevents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/events/games/bannerlord2/captiveevents.yaml -------------------------------------------------------------------------------- /data/events/games/conanexiles/conanexiles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/events/games/conanexiles/conanexiles.yaml -------------------------------------------------------------------------------- /data/events/games/fallout4/aaf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/events/games/fallout4/aaf.yaml -------------------------------------------------------------------------------- /data/events/games/fallout4/deviousdevices.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/events/games/fallout4/deviousdevices.yaml -------------------------------------------------------------------------------- /data/events/games/nightofrevenge/nightofrevenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/events/games/nightofrevenge/nightofrevenge.yaml -------------------------------------------------------------------------------- /data/events/games/skyrim/chaster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/events/games/skyrim/chaster.yaml -------------------------------------------------------------------------------- /data/events/games/skyrim/deviousdevices.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/events/games/skyrim/deviousdevices.yaml -------------------------------------------------------------------------------- /data/events/games/skyrim/deviouslyaccessible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/events/games/skyrim/deviouslyaccessible.yaml -------------------------------------------------------------------------------- /data/events/games/skyrim/gift.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/events/games/skyrim/gift.yaml -------------------------------------------------------------------------------- /data/events/games/skyrim/minai.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/events/games/skyrim/minai.yaml -------------------------------------------------------------------------------- /data/events/games/skyrim/nakeddefeat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/events/games/skyrim/nakeddefeat.yaml -------------------------------------------------------------------------------- /data/events/games/skyrim/sexlab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/events/games/skyrim/sexlab.yaml -------------------------------------------------------------------------------- /data/events/games/skyrim/spankthatass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/events/games/skyrim/spankthatass.yaml -------------------------------------------------------------------------------- /data/events/games/skyrim/toys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/events/games/skyrim/toys.yaml -------------------------------------------------------------------------------- /data/events/games/starfield/grayfunctions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/events/games/starfield/grayfunctions.yaml -------------------------------------------------------------------------------- /data/images/eldenring/health_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/images/eldenring/health_down.png -------------------------------------------------------------------------------- /data/images/eldenring/you_died.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/images/eldenring/you_died.png -------------------------------------------------------------------------------- /data/vibrators/pattern_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/data/vibrators/pattern_dict.json -------------------------------------------------------------------------------- /events/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /events/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/events/event.py -------------------------------------------------------------------------------- /events/eventloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/events/eventloader.py -------------------------------------------------------------------------------- /events/functions.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /games/conanexiles/ModsShared/ConanInterfaceForToys/Components/BP_AC_GIFT_PlayerController.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/games/conanexiles/ModsShared/ConanInterfaceForToys/Components/BP_AC_GIFT_PlayerController.uasset -------------------------------------------------------------------------------- /games/conanexiles/ModsShared/ConanInterfaceForToys/DataTables/DT_GIFT_EventList.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/games/conanexiles/ModsShared/ConanInterfaceForToys/DataTables/DT_GIFT_EventList.uasset -------------------------------------------------------------------------------- /games/conanexiles/ModsShared/ConanInterfaceForToys/Interfaces/BPI_GIFT_EventsManager.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/games/conanexiles/ModsShared/ConanInterfaceForToys/Interfaces/BPI_GIFT_EventsManager.uasset -------------------------------------------------------------------------------- /games/conanexiles/ModsShared/ConanInterfaceForToys/Structs/ST_GIFT_EventList.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/games/conanexiles/ModsShared/ConanInterfaceForToys/Structs/ST_GIFT_EventList.uasset -------------------------------------------------------------------------------- /games/conanexiles/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/games/conanexiles/readme.txt -------------------------------------------------------------------------------- /games/fallout4/dd/Scripts/DD/DD_Library.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/games/fallout4/dd/Scripts/DD/DD_Library.pex -------------------------------------------------------------------------------- /games/fallout4/dd/Scripts/Source/User/DD/DD_Library.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/games/fallout4/dd/Scripts/Source/User/DD/DD_Library.psc -------------------------------------------------------------------------------- /games/nightofrevenge/BepInEx/plugins/NoRLogger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/games/nightofrevenge/BepInEx/plugins/NoRLogger.dll -------------------------------------------------------------------------------- /games/nightofrevenge/NoRLogger_Source/LogPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/games/nightofrevenge/NoRLogger_Source/LogPatches.cs -------------------------------------------------------------------------------- /games/nightofrevenge/NoRLogger_Source/NoRLogger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/games/nightofrevenge/NoRLogger_Source/NoRLogger.csproj -------------------------------------------------------------------------------- /games/nightofrevenge/NoRLogger_Source/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/games/nightofrevenge/NoRLogger_Source/NuGet.Config -------------------------------------------------------------------------------- /games/nightofrevenge/NoRLogger_Source/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/games/nightofrevenge/NoRLogger_Source/Plugin.cs -------------------------------------------------------------------------------- /games/nightofrevenge/NoRLogger_Source/credit.txt: -------------------------------------------------------------------------------- 1 | Thanks to discord user @btg for this plugin! -------------------------------------------------------------------------------- /games/nightofrevenge/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/games/nightofrevenge/README.txt -------------------------------------------------------------------------------- /games/skyrim/plugin/SkyrimToyInterface.esp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/games/skyrim/plugin/SkyrimToyInterface.esp -------------------------------------------------------------------------------- /games/skyrim/plugin/scripts/AcheronHook.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/games/skyrim/plugin/scripts/AcheronHook.pex -------------------------------------------------------------------------------- /games/skyrim/plugin/scripts/SkyrimToyInterfacePlayerScript.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/games/skyrim/plugin/scripts/SkyrimToyInterfacePlayerScript.pex -------------------------------------------------------------------------------- /games/skyrim/plugin/scripts/source/AcheronHook.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/games/skyrim/plugin/scripts/source/AcheronHook.psc -------------------------------------------------------------------------------- /games/skyrim/plugin/scripts/source/SkyrimToyInterfacePlayerScript.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/games/skyrim/plugin/scripts/source/SkyrimToyInterfacePlayerScript.psc -------------------------------------------------------------------------------- /interfaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /interfaces/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/interfaces/interface.py -------------------------------------------------------------------------------- /interfaces/log_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/interfaces/log_reader.py -------------------------------------------------------------------------------- /interfaces/memory_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/interfaces/memory_reader.py -------------------------------------------------------------------------------- /interfaces/pixel_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/interfaces/pixel_reader.py -------------------------------------------------------------------------------- /interfaces/toy_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/interfaces/toy_interface.py -------------------------------------------------------------------------------- /pattern_generator/create_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/pattern_generator/create_pattern.py -------------------------------------------------------------------------------- /pattern_generator/requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | tqdm 3 | click -------------------------------------------------------------------------------- /pattern_generator/util_load_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/pattern_generator/util_load_patterns.py -------------------------------------------------------------------------------- /pattern_generator/util_pattern_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/pattern_generator/util_pattern_space.py -------------------------------------------------------------------------------- /pattern_generator/util_visualise_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/pattern_generator/util_visualise_pattern.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/settings.py -------------------------------------------------------------------------------- /toys/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toys/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/toys/base.py -------------------------------------------------------------------------------- /toys/chastity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toys/chastity/chaster/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toys/chastity/chaster/chaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/toys/chastity/chaster/chaster.py -------------------------------------------------------------------------------- /toys/estim/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toys/estim/estim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/toys/estim/estim.py -------------------------------------------------------------------------------- /toys/toy.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toys/vibrators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toys/vibrators/buttplugio/buttplug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/toys/vibrators/buttplugio/buttplug.py -------------------------------------------------------------------------------- /toys/vibrators/kizuna/kizuna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/toys/vibrators/kizuna/kizuna.py -------------------------------------------------------------------------------- /toys/vibrators/lovense/lovense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/toys/vibrators/lovense/lovense.py -------------------------------------------------------------------------------- /toys/vibrators/maustec/edgeomatic3000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/toys/vibrators/maustec/edgeomatic3000.py -------------------------------------------------------------------------------- /toys/vibrators/vibrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/toys/vibrators/vibrator.py -------------------------------------------------------------------------------- /toys/vibrators/xbox_controller/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/toys/vibrators/xbox_controller/test.py -------------------------------------------------------------------------------- /toys/vibrators/xbox_controller/xbox_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/toys/vibrators/xbox_controller/xbox_controller.py -------------------------------------------------------------------------------- /toys/xtoys/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinLL/GameInterfaceForToys/HEAD/toys/xtoys/interface.py --------------------------------------------------------------------------------