Advertisement
Guest User

CS:GO Game State Integration

a guest
Dec 9th, 2015
4,112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. - provider
  2. - name ; Will always be "Counter-Strike: Global Offensive"
  3. - appid ; Will always be 730
  4. - version ; Current game version number (13512 as of this post)
  5. - steamid ; player Steam ID in steamID64 format
  6. - timestamp ; UNIX time stamp
  7.  
  8.  
  9. - map
  10. - name ; map name in typical format (de_dust2, etc.)
  11. - phase ; "warmup", "live", maybe more?
  12. - round ; int, current round number
  13. - team_ct
  14. - score ; int, current team score
  15. - team_t
  16. - score ; int, current team score
  17.  
  18.  
  19. - round
  20. - phase ; "live", "freezetime", "over" (maybe "warmup", others?)
  21. - bomb ; "planted", "exploded", or "defused"
  22. - win_team ; "CT" or "T"
  23.  
  24.  
  25. - player_id
  26. - steamid ; steamid in steamID64 format
  27. - name ; current in-game name
  28. - activity ; "menu", "playing", "textinput" (console)
  29. - team ; "CT" or "T"
  30.  
  31.  
  32. - player_state
  33. - player
  34. - state
  35. - health ; int, 0-100, current HP
  36. - armor ; int, 0-100, current armor
  37. - helmet ; bool, true/false if they have helm armor
  38. - flashed ; int, 0-255 depending on how flashed the player is
  39. - smoked ; same as above, but for smoke
  40. - burning ; same as above, but for fire
  41. - money ; current money
  42. - round_kills ; how many kills the player got in that round
  43. - round_killhs ; how many headshot kills the player got (hs kills increase this *and* the above's number)
  44.  
  45.  
  46. - player_weapons
  47. - player
  48. - weapons
  49. - weapon_0 (_1, _2, _3, etc.)
  50. - name ; weapon name
  51. - paintkit ; appears to be an internally used skin name, or "default" if none
  52. - type ; "Knife", "Pistol", "Submachine Gun", etc.
  53. - state ; "holstered" or "active"
  54. - ammo_clip ; int, amount of current ammo in clip
  55. - ammo_clip_max ; int, max amount of ammo a clip can hold
  56. - ammo_reserve ; int, amount of reserve ammo, not in clip
  57.  
  58.  
  59. - player_match_stats
  60. - player
  61. - match_stats
  62. - kills ; int, total kills
  63. - assists ; int, total assists
  64. - deaths ; int, total deaths
  65. - mvps ; int, number of MVPs
  66. - score ; int, current score
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement