-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
178 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# GET /Api/CS2Interface/csgo_english.txt | ||
|
||
## Description | ||
|
||
Get the contents of the CS2 game file: [`resource/csgo_english.txt`](https://raw.githubusercontent.com/SteamDatabase/GameTracking-CS2/master/game/csgo/pak01_dir/resource/csgo_english.txt) | ||
|
||
## Path Parameters | ||
|
||
None | ||
|
||
## Query Parameters | ||
|
||
None | ||
|
||
## Response Result | ||
|
||
Property | Type | Description | ||
--- | --- | --- | ||
`ClientVersion` | `uint` | The version of CS2 that this data comes from | ||
`Data` | `object` | The contents of `resource/csgo_english.txt` | ||
|
||
## Example Response | ||
|
||
``` | ||
http://127.0.0.1:1242/Api/CS2Interface/csgo_english.txt | ||
``` | ||
|
||
```javascript | ||
{ | ||
"Message": "OK", | ||
"Success": true, | ||
"Result": { | ||
"ClientVersion": 2000468, | ||
"Data": { | ||
"GameUI_MainMenuMovieScene": "Main Menu Background Scenery", | ||
"GameUI_MainMenuMovieScene_Vanity": "Change Background Scenery", | ||
"GameUI_MainMenuMovieScene_Tooltip": "This setting allows you to customize the main menu background scenery which sets the mood for visual experience of your entire game.", | ||
//... | ||
} | ||
} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# GET /Api/CS2Interface/items_game_cdn.txt | ||
|
||
## Description | ||
|
||
Get the contents of the CS2 game file: [`scripts/items/items_game_cdn.txt`](https://raw.githubusercontent.com/SteamDatabase/GameTracking-CS2/master/game/csgo/pak01_dir/scripts/items/items_game_cdn.txt) | ||
|
||
## Path Parameters | ||
|
||
None | ||
|
||
## Query Parameters | ||
|
||
None | ||
|
||
## Response Result | ||
|
||
Property | Type | Description | ||
--- | --- | --- | ||
`ClientVersion` | `uint` | The version of CS2 that this data comes from | ||
`Data` | `object` | The contents of `scripts/items/items_game_cdn.txt` | ||
|
||
## Example Response | ||
|
||
``` | ||
http://127.0.0.1:1242/Api/CS2Interface/items_game_cdn.txt | ||
``` | ||
|
||
```javascript | ||
{ | ||
"Message": "OK", | ||
"Success": true, | ||
"Result": { | ||
"ClientVersion": 2000468, | ||
"Data": { | ||
"leather_handwraps_handwrap_camo_grey": "http://media.steampowered.com/apps/730/icons/econ/default_generated/leather_handwraps_handwrap_camo_grey_light_large.04557b1a8d68bccdd60b18521346091328756ded.png", | ||
"leather_handwraps_handwrap_fabric_houndstooth_orange": "http://media.steampowered.com/apps/730/icons/econ/default_generated/leather_handwraps_handwrap_fabric_houndstooth_orange_light_large.08248935a70031a18cb246f3e3ac2bc0d8d66339.png", | ||
"leather_handwraps_handwrap_fabric_orange_camo": "http://media.steampowered.com/apps/730/icons/econ/default_generated/leather_handwraps_handwrap_fabric_orange_camo_light_large.f8453c60f74a846bd3c05310de4f004cd95a1aa2.png", | ||
//... | ||
} | ||
} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# GET /Api/CS2Interface/steam.inf | ||
|
||
## Description | ||
|
||
Get the contents of the CS2 game file: [`game/csgo/steam.inf`](https://raw.githubusercontent.com/SteamDatabase/GameTracking-CS2/master/game/csgo/steam.inf) | ||
|
||
## Path Parameters | ||
|
||
None | ||
|
||
## Query Parameters | ||
|
||
None | ||
|
||
## Response Result | ||
|
||
Property | Type | Description | ||
--- | --- | --- | ||
`ClientVersion` | `uint` | The version of CS2 that this data comes from | ||
`Data` | `object` | The contents of `game/csgo/steam.inf` | ||
|
||
## Example Response | ||
|
||
``` | ||
http://127.0.0.1:1242/Api/CS2Interface/steam.inf | ||
``` | ||
|
||
```json | ||
{ | ||
"Message": "OK", | ||
"Success": true, | ||
"Result": { | ||
"ClientVersion": 2000468, | ||
"Data": { | ||
"ClientVersion": "2000468", | ||
"ServerVersion": "2000468", | ||
"PatchVersion": "1.40.5.9", | ||
"ProductName": "cs2", | ||
"appID": "730", | ||
"ServerAppID": "2347773", | ||
"SourceRevision": "9449802", | ||
"VersionDate": "Jan 09 2025", | ||
"VersionTime": "16:42:11" | ||
} | ||
} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters