kaaiuta

gameinfo_branchspecific.gi

Apr 26th, 2024
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. "GameInfo"
  2. {
  3. //
  4. // Branch-varying info, such as the game/title and app IDs, is in gameinfo_branchspecific.gi.
  5. // gameinfo.gi is the non-branch-varying content and can be integrated between branches.
  6. //
  7.  
  8. game "Dota 2"
  9. title "Dota 2"
  10.  
  11. FileSystem
  12. {
  13. SteamAppId 570
  14. BreakpadAppId 373300 // Report crashes under beta DLC, not the S1 game. Delete this when all clients are switched to S2
  15. BreakpadAppId_Tools 375360 // Use a separate bucket of buckets for "-tools" crashes so that they don't get drowned out by game crashes. Falls back to BreakpadAppId/SteamAppId if missing
  16.  
  17. SearchPaths
  18. {
  19. // These are optional language paths. They must be mounted first, which is why there are first in the list.
  20. // *LANGUAGE* will be replaced with the actual language name. If not running a specific language, these paths will not be mounted
  21. Game_Language dota_*LANGUAGE*
  22.  
  23. // These are optional low-violence paths. They will only get mounted if you're in a low-violence mode.
  24. Game_LowViolence dota_lv
  25.  
  26. Game dota_tempcontent
  27. Mod dota_tempcontent
  28.  
  29. Game dota
  30. Game core
  31.  
  32. Mod dota
  33.  
  34. Write dota
  35.  
  36. // These are optional language paths. They must be mounted first, which is why there are first in the list.
  37. // *LANGUAGE* will be replaced with the actual language name. If not running a specific language, these paths will not be mounted
  38. AddonRoot_Language dota_*LANGUAGE*_addons
  39.  
  40. AddonRoot dota_addons
  41.  
  42. // Note: addon content is included in publiccontent by default.
  43. PublicContent dota_core
  44. PublicContent core
  45. }
  46.  
  47. }
  48. }
Advertisement
Add Comment
Please, Sign In to add comment