Advertisement
2x100

Untitled

May 15th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.18 KB | None | 0 0
  1. "GameMenu" [$WIN32]
  2. {
  3. "budhud"
  4. {
  5. "label" "IVANHUD"
  6. "subimage" ""
  7. "OnlyAtMenu" "1"
  8. "tooltip" "Show information about the hud"
  9. "command" "engine con_enable 1;showconsole;clear;
  10. echo ==============================================;
  11. echo BUDHUD, 17/MARCH/2016 by Whisker I IVAN;
  12. echo ==============================================;
  13. echo TF2 Charity Fundraiser Site: tipofthehats.org;
  14. echo =============================================="
  15. }
  16.  
  17. /////////////////////////////////////////////////////////////////////////
  18. // Add your own favorite servers here.
  19. // To do so, you must put a connect string
  20. // Example:
  21. // "command" "engine connect 192.223.26.43:27015; password butts"
  22. // You can also set these up to create a locally-hosted server
  23. // Example:
  24. // "command" "engine map tr_walkway_rc2"
  25. /////////////////////////////////////////////////////////////////////////
  26.  
  27. "Favorite1"
  28. {
  29. "label" "" // Leave blank
  30. "command" "engine connect 37.230.210.108; password pisos"
  31. "OnlyAtMenu" "0"
  32. "tooltip" "TF200: Mixup Server" // Change if you'd like
  33. }
  34. "Favorite2"
  35. {
  36. "label" "" // Leave blank
  37. "command" "engine connect 109.170.16.98:27050 "
  38. "OnlyAtMenu" "0"
  39. "tooltip" "TEMPUS SUKA RU" // Change if you'd like
  40. }
  41. "Favorite3"
  42. {
  43. "label" "" // Leave blank
  44. "command" "engine map tr_walkway_rc2"
  45. "OnlyAtMenu" "0"
  46. "tooltip" "tr_walkway_rc2 (Local)" // Change if you'd like
  47. }
  48. "PlayComp"
  49. {
  50. "label" "MATCHMAKING"
  51. "command" "ladder_ui_show"
  52. "subimage" "glyph_practice"
  53. "OnlyAtMenu" "1"
  54. }
  55. "ResumeGameButton"
  56. {
  57. "label" "RESUME GAME"
  58. "command" "ResumeGame"
  59. "OnlyInGame" "1"
  60. "subimage" "icon_resume"
  61. }
  62. "QuickplayButton"
  63. {
  64. "label" "MULTIPLAYER"
  65. "command" "quickplay"
  66. "subimage" "glyph_multiplayer"
  67. "OnlyAtMenu" "1"
  68. }
  69. "QuickplayChangeButton"
  70. {
  71. "label" "NEW GAME"
  72. "command" "quickplay"
  73. "subimage" "glyph_server"
  74. "OnlyInGame" "1"
  75. }
  76. "PlayPVEButton"
  77. {
  78. "label" "MvM"
  79. "command" "playpve"
  80. "subimage" "glyph_coop"
  81. "OnlyAtMenu" "1"
  82. }
  83. "ServerBrowserButton"
  84. {
  85. "label" "SERVERS"
  86. "command" "OpenServerBrowser"
  87. "subimage" "glyph_server_browser"
  88. "OnlyAtMenu" "1"
  89. }
  90. "ChangeServerButton"
  91. {
  92. "label" "CHANGE SERVER"
  93. "command" "OpenServerBrowser"
  94. "subimage" "glyph_server_browser"
  95. "OnlyInGame" "1"
  96. }
  97. "ReplayBrowserButton"
  98. {
  99. "label" "#GameUI_GameMenu_ReplayDemos"
  100. "command" "engine replay_reloadbrowser"
  101. "subimage" "glyph_tv"
  102. }
  103. "SteamWorkshopButton"
  104. {
  105. "label" "#MMenu_SteamWorkshop"
  106. "command" "engine OpenSteamWorkshopDialog"
  107. "subimage" "glyph_steamworkshop"
  108. "tooltip" "Steam Workshop"
  109. }
  110. "VRModeButton"
  111. {
  112. "label" "#MMenu_VRMode_Activate"
  113. "command" "engine vr_toggle"
  114. "subimage" "glyph_vr"
  115. "OnlyWhenVREnabled" "1"
  116. }
  117. "TrainingButton"
  118. {
  119. "label" "#TF_Training"
  120. "command" "offlinepractice"
  121. "OnlyAtMenu" "1"
  122. "tooltip" "Training Mode"
  123. }
  124.  
  125. // These buttons get positioned by the MainMenuOverride.res
  126. "CreateServerButton"
  127. {
  128. "label" "#GameUI_GameMenu_CreateServer"
  129. "command" "OpenCreateMultiplayerGameDialog"
  130. "OnlyAtMenu" "1"
  131. "tooltip" "Create Server"
  132. }
  133. "GeneralStoreButton"
  134. {
  135. "label" "#MMenu_Shop"
  136. "command" "engine open_store"
  137. "subimage" "glyph_store"
  138. }
  139. "CharacterSetupButton"
  140. {
  141. "label" "#MMenu_CharacterSetup"
  142. "command" "engine open_charinfo"
  143. "subimage" "glyph_items"
  144. }
  145.  
  146. // These buttons are only shown while in-game
  147. // and also are positioned by the .res file
  148. "CallVoteButton"
  149. {
  150. "label" ""
  151. "command" "callvote"
  152. "OnlyInGame" "1"
  153. "tooltip" "#MMenu_CallVote"
  154. }
  155. "MutePlayersButton"
  156. {
  157. "label" ""
  158. "command" "OpenPlayerListDialog"
  159. "OnlyInGame" "1"
  160. "tooltip" "#MMenu_MutePlayers"
  161. }
  162. "RequestCoachButton"
  163. {
  164. "label" ""
  165. "command" "engine cl_coach_find_coach"
  166. "OnlyInGame" "1"
  167. "tooltip" "#MMenu_RequestCoach"
  168. }
  169. "ReportPlayerButton"
  170. {
  171. "label" ""
  172. "command" "OpenReportPlayerDialog"
  173. "OnlyInGame" "1"
  174. "subimage" "glyph_alert"
  175. "tooltip" "#MMenu_ReportPlayer"
  176. }
  177. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement