├── .github └── workflows │ └── workflow.yml ├── .gitignore ├── README.md ├── index.js ├── package.json └── static ├── csgo_brazilian.txt ├── csgo_bulgarian.txt ├── csgo_czech.txt ├── csgo_danish.txt ├── csgo_dutch.txt ├── csgo_english.txt ├── csgo_finnish.txt ├── csgo_french.txt ├── csgo_german.txt ├── csgo_greek.txt ├── csgo_hungarian.txt ├── csgo_indonesian.txt ├── csgo_italian.txt ├── csgo_japanese.txt ├── csgo_koreana.txt ├── csgo_latam.txt ├── csgo_norwegian.txt ├── csgo_polish.txt ├── csgo_portuguese.txt ├── csgo_romanian.txt ├── csgo_russian.txt ├── csgo_schinese.txt ├── csgo_spanish.txt ├── csgo_swedish.txt ├── csgo_tchinese.txt ├── csgo_thai.txt ├── csgo_turkish.txt ├── csgo_ukrainian.txt ├── csgo_vietnamese.txt ├── items_game.txt ├── items_game_cdn.txt ├── manifestId.txt └── pak01_dir.vpk /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | temp/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # cs-files 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/package.json -------------------------------------------------------------------------------- /static/csgo_brazilian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_brazilian.txt -------------------------------------------------------------------------------- /static/csgo_bulgarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_bulgarian.txt -------------------------------------------------------------------------------- /static/csgo_czech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_czech.txt -------------------------------------------------------------------------------- /static/csgo_danish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_danish.txt -------------------------------------------------------------------------------- /static/csgo_dutch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_dutch.txt -------------------------------------------------------------------------------- /static/csgo_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_english.txt -------------------------------------------------------------------------------- /static/csgo_finnish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_finnish.txt -------------------------------------------------------------------------------- /static/csgo_french.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_french.txt -------------------------------------------------------------------------------- /static/csgo_german.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_german.txt -------------------------------------------------------------------------------- /static/csgo_greek.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_greek.txt -------------------------------------------------------------------------------- /static/csgo_hungarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_hungarian.txt -------------------------------------------------------------------------------- /static/csgo_indonesian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_indonesian.txt -------------------------------------------------------------------------------- /static/csgo_italian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_italian.txt -------------------------------------------------------------------------------- /static/csgo_japanese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_japanese.txt -------------------------------------------------------------------------------- /static/csgo_koreana.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_koreana.txt -------------------------------------------------------------------------------- /static/csgo_latam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_latam.txt -------------------------------------------------------------------------------- /static/csgo_norwegian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_norwegian.txt -------------------------------------------------------------------------------- /static/csgo_polish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_polish.txt -------------------------------------------------------------------------------- /static/csgo_portuguese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_portuguese.txt -------------------------------------------------------------------------------- /static/csgo_romanian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_romanian.txt -------------------------------------------------------------------------------- /static/csgo_russian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_russian.txt -------------------------------------------------------------------------------- /static/csgo_schinese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_schinese.txt -------------------------------------------------------------------------------- /static/csgo_spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_spanish.txt -------------------------------------------------------------------------------- /static/csgo_swedish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_swedish.txt -------------------------------------------------------------------------------- /static/csgo_tchinese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_tchinese.txt -------------------------------------------------------------------------------- /static/csgo_thai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_thai.txt -------------------------------------------------------------------------------- /static/csgo_turkish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_turkish.txt -------------------------------------------------------------------------------- /static/csgo_ukrainian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_ukrainian.txt -------------------------------------------------------------------------------- /static/csgo_vietnamese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/csgo_vietnamese.txt -------------------------------------------------------------------------------- /static/items_game.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/items_game.txt -------------------------------------------------------------------------------- /static/items_game_cdn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/items_game_cdn.txt -------------------------------------------------------------------------------- /static/manifestId.txt: -------------------------------------------------------------------------------- 1 | 2396441865524723196 -------------------------------------------------------------------------------- /static/pak01_dir.vpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csfloat/cs-files/HEAD/static/pak01_dir.vpk --------------------------------------------------------------------------------