├── .gitignore ├── .vscode └── c_cpp_properties.json ├── LICENSE.txt ├── Makefile ├── README.md ├── README_release.txt ├── bin_data ├── condenstation_qr_border.png └── generate.sh ├── include ├── CCondenstationServerPlugin.hpp ├── CMsgClientLogonAutogen.h ├── CMsgClientLogonResponseAutogen.h ├── IClientUser_c.h ├── IServerPluginCallbacks.hpp ├── ISteamMatchmaking_c.h ├── ISteamPS3OverlayRender_c.h ├── ISteamUser_c.h ├── SteamAuthentication.h ├── aes.h ├── cellHttpHelper.h ├── condenstation_config.h ├── condenstation_logger.h ├── descriptor.pb-c.h ├── enums.pb-c.h ├── inih.h ├── libqrencode_bitstream.h ├── libqrencode_mask.h ├── libqrencode_mmask.h ├── libqrencode_mqrspec.h ├── libqrencode_qrencode.h ├── libqrencode_qrencode_inner.h ├── libqrencode_qrinput.h ├── libqrencode_qrspec.h ├── libqrencode_rsecc.h ├── libqrencode_split.h ├── memmem.h ├── ppcasm.h ├── protobuf-c.h ├── ps3_utilities.h ├── std_string.h ├── steam_api.h ├── steam_ps3_nids.h ├── steamclient_google_protobufs.h ├── steamclient_protobuf_vtable.h ├── steamclient_steamps3params.h ├── steamclient_utils.h ├── steammessages_auth.steamclient.pb-c.h ├── steammessages_base.pb-c.h ├── steammessages_unified_base.steamclient.pb-c.h ├── tpng.h └── valve_ps3.h ├── scripts ├── build_folder.sh └── version.sh ├── source ├── CCondenstationServerPlugin.cpp ├── _blank_toc.c ├── _stubs.c ├── aes.c ├── cellHttpCMList.c ├── cellHttpHelper.c ├── cellHttpSteamAuthentication.c ├── condenstation.c ├── condenstation_config.c ├── condenstation_logger.c ├── crc32.c ├── descriptor.pb-c.c ├── enums.pb-c.c ├── generated │ └── condenstation_qr_border.h ├── hooks_cm.c ├── hooks_overlay.c ├── hooks_protobuf.c ├── hooks_user.c ├── inih.c ├── libqrencode_bitstream.c ├── libqrencode_mask.c ├── libqrencode_mmask.c ├── libqrencode_mqrspec.c ├── libqrencode_qrencode.c ├── libqrencode_qrinput.c ├── libqrencode_qrspec.c ├── libqrencode_rsecc.c ├── libqrencode_split.c ├── memmem.c ├── protobuf-c.c ├── ps3_utilities.c ├── steam_login_flow_qr.c ├── steam_login_flow_shared.c ├── steam_login_flow_user.c ├── steam_login_manager.c ├── steamclient_utils.c ├── steammessages_auth.steamclient.pb-c.c ├── steammessages_base.pb-c.c ├── steammessages_unified_base.steamclient.pb-c.c └── tpng.c ├── third_party_licenses ├── RB3Enhanced_LICENSE.txt ├── inih_LICENSE.txt ├── libqrencode-LICENSE.txt ├── protobuf-c_LICENSE.txt └── tpng_LICENSE.txt └── zip1 └── addons └── condenstation.vdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/README.md -------------------------------------------------------------------------------- /README_release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/README_release.txt -------------------------------------------------------------------------------- /bin_data/condenstation_qr_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/bin_data/condenstation_qr_border.png -------------------------------------------------------------------------------- /bin_data/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/bin_data/generate.sh -------------------------------------------------------------------------------- /include/CCondenstationServerPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/CCondenstationServerPlugin.hpp -------------------------------------------------------------------------------- /include/CMsgClientLogonAutogen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/CMsgClientLogonAutogen.h -------------------------------------------------------------------------------- /include/CMsgClientLogonResponseAutogen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/CMsgClientLogonResponseAutogen.h -------------------------------------------------------------------------------- /include/IClientUser_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/IClientUser_c.h -------------------------------------------------------------------------------- /include/IServerPluginCallbacks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/IServerPluginCallbacks.hpp -------------------------------------------------------------------------------- /include/ISteamMatchmaking_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/ISteamMatchmaking_c.h -------------------------------------------------------------------------------- /include/ISteamPS3OverlayRender_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/ISteamPS3OverlayRender_c.h -------------------------------------------------------------------------------- /include/ISteamUser_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/ISteamUser_c.h -------------------------------------------------------------------------------- /include/SteamAuthentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/SteamAuthentication.h -------------------------------------------------------------------------------- /include/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/aes.h -------------------------------------------------------------------------------- /include/cellHttpHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/cellHttpHelper.h -------------------------------------------------------------------------------- /include/condenstation_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/condenstation_config.h -------------------------------------------------------------------------------- /include/condenstation_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/condenstation_logger.h -------------------------------------------------------------------------------- /include/descriptor.pb-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/descriptor.pb-c.h -------------------------------------------------------------------------------- /include/enums.pb-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/enums.pb-c.h -------------------------------------------------------------------------------- /include/inih.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/inih.h -------------------------------------------------------------------------------- /include/libqrencode_bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/libqrencode_bitstream.h -------------------------------------------------------------------------------- /include/libqrencode_mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/libqrencode_mask.h -------------------------------------------------------------------------------- /include/libqrencode_mmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/libqrencode_mmask.h -------------------------------------------------------------------------------- /include/libqrencode_mqrspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/libqrencode_mqrspec.h -------------------------------------------------------------------------------- /include/libqrencode_qrencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/libqrencode_qrencode.h -------------------------------------------------------------------------------- /include/libqrencode_qrencode_inner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/libqrencode_qrencode_inner.h -------------------------------------------------------------------------------- /include/libqrencode_qrinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/libqrencode_qrinput.h -------------------------------------------------------------------------------- /include/libqrencode_qrspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/libqrencode_qrspec.h -------------------------------------------------------------------------------- /include/libqrencode_rsecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/libqrencode_rsecc.h -------------------------------------------------------------------------------- /include/libqrencode_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/libqrencode_split.h -------------------------------------------------------------------------------- /include/memmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/memmem.h -------------------------------------------------------------------------------- /include/ppcasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/ppcasm.h -------------------------------------------------------------------------------- /include/protobuf-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/protobuf-c.h -------------------------------------------------------------------------------- /include/ps3_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/ps3_utilities.h -------------------------------------------------------------------------------- /include/std_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/std_string.h -------------------------------------------------------------------------------- /include/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/steam_api.h -------------------------------------------------------------------------------- /include/steam_ps3_nids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/steam_ps3_nids.h -------------------------------------------------------------------------------- /include/steamclient_google_protobufs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/steamclient_google_protobufs.h -------------------------------------------------------------------------------- /include/steamclient_protobuf_vtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/steamclient_protobuf_vtable.h -------------------------------------------------------------------------------- /include/steamclient_steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/steamclient_steamps3params.h -------------------------------------------------------------------------------- /include/steamclient_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/steamclient_utils.h -------------------------------------------------------------------------------- /include/steammessages_auth.steamclient.pb-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/steammessages_auth.steamclient.pb-c.h -------------------------------------------------------------------------------- /include/steammessages_base.pb-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/steammessages_base.pb-c.h -------------------------------------------------------------------------------- /include/steammessages_unified_base.steamclient.pb-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/steammessages_unified_base.steamclient.pb-c.h -------------------------------------------------------------------------------- /include/tpng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/tpng.h -------------------------------------------------------------------------------- /include/valve_ps3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/include/valve_ps3.h -------------------------------------------------------------------------------- /scripts/build_folder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/scripts/build_folder.sh -------------------------------------------------------------------------------- /scripts/version.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # todo 3 | -------------------------------------------------------------------------------- /source/CCondenstationServerPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/CCondenstationServerPlugin.cpp -------------------------------------------------------------------------------- /source/_blank_toc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/_blank_toc.c -------------------------------------------------------------------------------- /source/_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/_stubs.c -------------------------------------------------------------------------------- /source/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/aes.c -------------------------------------------------------------------------------- /source/cellHttpCMList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/cellHttpCMList.c -------------------------------------------------------------------------------- /source/cellHttpHelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/cellHttpHelper.c -------------------------------------------------------------------------------- /source/cellHttpSteamAuthentication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/cellHttpSteamAuthentication.c -------------------------------------------------------------------------------- /source/condenstation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/condenstation.c -------------------------------------------------------------------------------- /source/condenstation_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/condenstation_config.c -------------------------------------------------------------------------------- /source/condenstation_logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/condenstation_logger.c -------------------------------------------------------------------------------- /source/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/crc32.c -------------------------------------------------------------------------------- /source/descriptor.pb-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/descriptor.pb-c.c -------------------------------------------------------------------------------- /source/enums.pb-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/enums.pb-c.c -------------------------------------------------------------------------------- /source/generated/condenstation_qr_border.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/generated/condenstation_qr_border.h -------------------------------------------------------------------------------- /source/hooks_cm.c: -------------------------------------------------------------------------------- 1 | // TODO(Emma): move everything to do with CM connections here 2 | -------------------------------------------------------------------------------- /source/hooks_overlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/hooks_overlay.c -------------------------------------------------------------------------------- /source/hooks_protobuf.c: -------------------------------------------------------------------------------- 1 | // TODO(Emma): move everything to do with protobuf manipulation here 2 | -------------------------------------------------------------------------------- /source/hooks_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/hooks_user.c -------------------------------------------------------------------------------- /source/inih.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/inih.c -------------------------------------------------------------------------------- /source/libqrencode_bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/libqrencode_bitstream.c -------------------------------------------------------------------------------- /source/libqrencode_mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/libqrencode_mask.c -------------------------------------------------------------------------------- /source/libqrencode_mmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/libqrencode_mmask.c -------------------------------------------------------------------------------- /source/libqrencode_mqrspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/libqrencode_mqrspec.c -------------------------------------------------------------------------------- /source/libqrencode_qrencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/libqrencode_qrencode.c -------------------------------------------------------------------------------- /source/libqrencode_qrinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/libqrencode_qrinput.c -------------------------------------------------------------------------------- /source/libqrencode_qrspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/libqrencode_qrspec.c -------------------------------------------------------------------------------- /source/libqrencode_rsecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/libqrencode_rsecc.c -------------------------------------------------------------------------------- /source/libqrencode_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/libqrencode_split.c -------------------------------------------------------------------------------- /source/memmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/memmem.c -------------------------------------------------------------------------------- /source/protobuf-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/protobuf-c.c -------------------------------------------------------------------------------- /source/ps3_utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/ps3_utilities.c -------------------------------------------------------------------------------- /source/steam_login_flow_qr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/steam_login_flow_qr.c -------------------------------------------------------------------------------- /source/steam_login_flow_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/steam_login_flow_shared.c -------------------------------------------------------------------------------- /source/steam_login_flow_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/steam_login_flow_user.c -------------------------------------------------------------------------------- /source/steam_login_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/steam_login_manager.c -------------------------------------------------------------------------------- /source/steamclient_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/steamclient_utils.c -------------------------------------------------------------------------------- /source/steammessages_auth.steamclient.pb-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/steammessages_auth.steamclient.pb-c.c -------------------------------------------------------------------------------- /source/steammessages_base.pb-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/steammessages_base.pb-c.c -------------------------------------------------------------------------------- /source/steammessages_unified_base.steamclient.pb-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/steammessages_unified_base.steamclient.pb-c.c -------------------------------------------------------------------------------- /source/tpng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/source/tpng.c -------------------------------------------------------------------------------- /third_party_licenses/RB3Enhanced_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/third_party_licenses/RB3Enhanced_LICENSE.txt -------------------------------------------------------------------------------- /third_party_licenses/inih_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/third_party_licenses/inih_LICENSE.txt -------------------------------------------------------------------------------- /third_party_licenses/libqrencode-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/third_party_licenses/libqrencode-LICENSE.txt -------------------------------------------------------------------------------- /third_party_licenses/protobuf-c_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/third_party_licenses/protobuf-c_LICENSE.txt -------------------------------------------------------------------------------- /third_party_licenses/tpng_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/third_party_licenses/tpng_LICENSE.txt -------------------------------------------------------------------------------- /zip1/addons/condenstation.vdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/condenstation/HEAD/zip1/addons/condenstation.vdf --------------------------------------------------------------------------------