Advertisement
BlackRedDead

Smithy's Mod Empires_Mod setup

Sep 25th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. "GameInfo" {
  2.  
  3. game "Empires_mod"
  4. gamelogo 1
  5. developer "Empiresmod Foundation"
  6. developer_url "http://www.empiresmod.com"
  7. icon "resource/steam_icon"
  8. manual "https://empiresmod.com/docs/quickstart/en/quick_start.html"
  9. type multiplayer_only
  10.  
  11. FileSystem {
  12.  
  13. SteamAppId 17740 // GCF for TF2, required for ep2 sdk
  14. ToolsAppId 211 // Tools will load this (ie: source SDK caches) to get things like materials\debug, materials\editor, etc.
  15.  
  16. SearchPaths {
  17. game+mod+mod_write+default_write_path |gameinfo_path|.
  18. game+mod |all_source_engine_paths|empires/.
  19. game+mod |gameinfo_path|custom/*
  20. gamebin |all_source_engine_paths|empires/bin
  21.  
  22. // We search VPK files before ordinary folders, because most files will be found in
  23. // VPK and we can avoid making thousands of file system calls to attempt to open files
  24. // in folders where they don't exist. (Searching a VPK is much faster than making an operating
  25. // system call.)
  26. game_lv hl2/hl2_lv.vpk
  27. game+mod hl2mp/hl2mp_english.vpk
  28. game+mod hl2mp/hl2mp_pak.vpk
  29. game |all_source_engine_paths|sourcetest/sourcetest_pak_dir.vpk
  30. game |all_source_engine_paths|hl2/hl2_english.vpk
  31. game |all_source_engine_paths|hl2/hl2_pak.vpk
  32. game |all_source_engine_paths|hl2/hl2_textures.vpk
  33. game |all_source_engine_paths|hl2/hl2_sound_vo_english.vpk
  34. game |all_source_engine_paths|hl2/hl2_sound_misc.vpk
  35. game |all_source_engine_paths|hl2/hl2_misc.vpk
  36. platform |all_source_engine_paths|platform/platform_misc.vpk
  37.  
  38. // Last, mount in shared HL2 loose files
  39. game |all_source_engine_paths|hl2mp
  40. game |all_source_engine_paths|hl2
  41. platform |all_source_engine_paths|platform
  42. game |all_source_engine_paths|sourcetest
  43. }
  44. }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement