├── .gitattributes ├── .gitignore ├── README.md ├── TODO ├── example.png ├── requirements.txt └── src ├── backend ├── __init__.py ├── player.py ├── server.py ├── server_module.py └── websocket.py ├── frontend ├── base.html ├── index.html ├── info.html ├── region.html └── settings.html ├── icon.ico ├── main.py ├── main.spec └── settings ├── data.json ├── default.json └── profiles └── profile.placeholder /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-detectable=false 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadly/valorant-agent-yoinker/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadly/valorant-agent-yoinker/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadly/valorant-agent-yoinker/HEAD/TODO -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadly/valorant-agent-yoinker/HEAD/example.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | valclient 3 | pywebview 4 | requests 5 | websockets -------------------------------------------------------------------------------- /src/backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadly/valorant-agent-yoinker/HEAD/src/backend/player.py -------------------------------------------------------------------------------- /src/backend/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadly/valorant-agent-yoinker/HEAD/src/backend/server.py -------------------------------------------------------------------------------- /src/backend/server_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadly/valorant-agent-yoinker/HEAD/src/backend/server_module.py -------------------------------------------------------------------------------- /src/backend/websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadly/valorant-agent-yoinker/HEAD/src/backend/websocket.py -------------------------------------------------------------------------------- /src/frontend/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadly/valorant-agent-yoinker/HEAD/src/frontend/base.html -------------------------------------------------------------------------------- /src/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadly/valorant-agent-yoinker/HEAD/src/frontend/index.html -------------------------------------------------------------------------------- /src/frontend/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadly/valorant-agent-yoinker/HEAD/src/frontend/info.html -------------------------------------------------------------------------------- /src/frontend/region.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadly/valorant-agent-yoinker/HEAD/src/frontend/region.html -------------------------------------------------------------------------------- /src/frontend/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadly/valorant-agent-yoinker/HEAD/src/frontend/settings.html -------------------------------------------------------------------------------- /src/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadly/valorant-agent-yoinker/HEAD/src/icon.ico -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadly/valorant-agent-yoinker/HEAD/src/main.py -------------------------------------------------------------------------------- /src/main.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadly/valorant-agent-yoinker/HEAD/src/main.spec -------------------------------------------------------------------------------- /src/settings/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadly/valorant-agent-yoinker/HEAD/src/settings/data.json -------------------------------------------------------------------------------- /src/settings/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadly/valorant-agent-yoinker/HEAD/src/settings/default.json -------------------------------------------------------------------------------- /src/settings/profiles/profile.placeholder: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------