Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.69 KB | None | 0 0
  1. # ========================================================
  2. # REUNION CONFIGURATION
  3. # ========================================================
  4.  
  5. #
  6. # General rule for modifying this file:
  7. # DONT CHANGE ANYTHING IF YOU DONT KNOW WHAT IT MEANS!
  8. #
  9.  
  10.  
  11. # ========================================================
  12. # AUTHID MANAGEMENT
  13. # ========================================================
  14.  
  15. # ClientID types (for cid_* options)
  16. # 1: Real (or generated by HW) steam (STEAM_xx:xx:xx)
  17. # 2: Real (or generated by HW) valve (VALVE_xx:xx:xx)
  18. # 3: STEAM_ by IP
  19. # 4: VALVE_ by IP
  20. # 5: Deprecated - client will be rejected
  21. # 6: reserved for future use
  22. # 7: HLTV
  23. # 8: STEAM_ID_LAN
  24. # 9: STEAM_ID_PENDING
  25. # 10: VALVE_ID_LAN
  26. # 11: VALVE_ID_PENDING
  27. # 12: STEAM_666:88:666
  28.  
  29. # Use these options to set authid's for clients
  30.  
  31. ### AUTH CONTROL ###
  32.  
  33. # For Legit Steam clients (default is real STEAM_xx:xx:xx [1])
  34. cid_Steam = 1
  35.  
  36. # Client recognized as pending when they sucessfully authorized, but did not get steam id
  37. # REMARK: Actually, it got steamid, but it is useless (STEAM_0:0:0 for example)
  38. # default is STEAM_ID_PENDING [9]
  39. cid_SteamPending = 9
  40.  
  41. # for HLTV (default is HLTV [7])
  42. cid_HLTV = 7
  43.  
  44. # for p.47 clients that do not support unique id generation (default is STEAM_ID_LAN [8])
  45. cid_NoSteam47 = 3
  46.  
  47. # for p.48 clients that do not support unique id generation (default is VALVE_ID_LAN [10])
  48. cid_NoSteam48 = 3
  49.  
  50. # For players having revEmu ( >= 9.74) on client-side:
  51. # default is real STEAM_xx:xx:xx [1]
  52. cid_RevEmu = 1
  53.  
  54. # For players having RevEmu 2013 on client-side:
  55. # default is real STEAM_xx:xx:xx [1]
  56. cid_RevEmu2013 = 1
  57.  
  58. # For players having SteamClient 2009 / revEmu > 9.82 on client-side:
  59. # default is real STEAM_xx:xx:xx [1]
  60. cid_SC2009 = 1
  61.  
  62. # For players having old revEmu on client-side:
  63. # default is real STEAM_xx:xx:xx [1]
  64. cid_OldRevEmu = 1
  65.  
  66. # For players having hCupa's SteamEmu on client-side:
  67. # default is real STEAM_xx:xx:xx [1]
  68. cid_SteamEmu = 1
  69.  
  70. # For players having AVSMP (Cracked Steam) on client-side:
  71. # default is real STEAM_xx:xx:xx [1]
  72. cid_AVSMP = 1
  73.  
  74. # For SETTI ServerScanner
  75. # default is STEAM_xx:xx:xx generated by IP [3]
  76. cid_Setti = 3
  77.  
  78. # For SXEI Clients
  79. # default is real STEAM_xx:xx:xx [1]
  80. cid_SXEI = 1
  81.  
  82. # For players having SmartSteamEmu > 1.2.4 on client-side:
  83. # default is real STEAM_xx:xx:xx [1]
  84. cid_SSE3 = 1
  85.  
  86.  
  87. ### AUTH SETTINGS ###
  88.  
  89. # ServerInfoAnswerType (0/1/2)
  90. # Sets server answer type for query requests
  91. # 0 = New style (Source Engine)
  92. # 1 = Old Style (Fix favorites list for p.47 clients)
  93. # 2 = Hybrid mode - Server is visible anywhere, but there are 3 packets generated for every serverinfo request
  94. ServerInfoAnswerType = 0
  95.  
  96. # EnableSXEIdGeneration (0 / 1)
  97. # Turns on steamid generation based on info sent by sXeI client
  98. # Enable this ONLY if you have sXeI server installed!
  99. EnableSXEIdGeneration = 0
  100.  
  101. # SC2009_RevCompatMode (0 / 1)
  102. # Enable fix to make steamids generated for SC2009 compatible with revEmu
  103. SC2009_RevCompatMode = 1
  104.  
  105. # SteamIdHashSalt (string)
  106. # Salt string for SteamIDs hashing. Irreversibly changes SteamIDs. Applies only to SteamIDs generated by emulators.
  107. # Should be more than 16 chars length. If string is empty, hashing is not applied.
  108. SteamIdHashSalt = ""
  109.  
  110. # SteamIdHashDProtoCompat (0 / 1)
  111. # Use less reliable method of SteamID hashing from dproto (deprecated).
  112. SteamIdHashDProtoCompat = 0
  113.  
  114. # EnableGenPrefix2 (0 / 1)
  115. # Enable second prefix (0 or 1) for generated by HW authids. Reduces chance of authid collisions. Works only with configured SteamIdHashSalt.
  116. EnableGenPrefix2 = 0
  117.  
  118. # FixBuggedQuery (0 / 1)
  119. # Enable fix for clients with bugged serverbrowser. Prevents hanging on connect.
  120. FixBuggedQuery = 1
  121.  
  122. # HLTVExcept_IP (ip addr)
  123. # HLTV from this IP will be able to join the server even if cid_HLTV is set to 5 (deprecated)
  124. HLTVExcept_IP = 127.0.0.1
  125.  
  126. # QueryFloodBanTime (1 - 60)
  127. # Ban time in minutes for server query flooding.
  128. QueryFloodBanTime = 10
  129.  
  130.  
  131. ### AUTHID PREFIXES ###
  132.  
  133. # IPGen_Prefix1 (int)
  134. # STEAM_a:b:c
  135. # first prefix (a) for authids generated by IP
  136. IPGen_Prefix1 = 0
  137.  
  138. # IPGen_Prefix2 (int)
  139. # STEAM_a:b:c
  140. # second prefix (b) for authids generated by IP
  141. IPGen_Prefix2 = 4
  142.  
  143. # Native_Prefix1 (int)
  144. # STEAM_a:b:c
  145. # first prefix (a) for authids generated by native auth method (Steam)
  146. Native_Prefix1 = 0;
  147.  
  148. # RevEmu_Prefix1 (int)
  149. # STEAM_a:b:c
  150. # first prefix (a) for authids generated by Steamclient 2009
  151. SC2009_Prefix1 = 0;
  152.  
  153. # RevEmu_Prefix1 (int)
  154. # STEAM_a:b:c
  155. # first prefix (a) for authids generated by RevEmu
  156. RevEmu_Prefix1 = 1;
  157.  
  158. # RevEmu2013_Prefix1 (int)
  159. # STEAM_a:b:c
  160. # first prefix (a) for authids generated by RevEmu2013
  161. RevEmu2013_Prefix1 = 1;
  162.  
  163. # OldRevEmu_Prefix1 (int)
  164. # STEAM_a:b:c
  165. # first prefix (a) for authids generated by old RevEmu
  166. OldRevEmu_Prefix1 = 2;
  167.  
  168. # SteamEmu_Prefix1 (int)
  169. # STEAM_a:b:c
  170. # first prefix (a) for authids generated by SteamEmu
  171. SteamEmu_Prefix1 = 3;
  172.  
  173. # SteamEmu_Prefix1 (int)
  174. # STEAM_a:b:c
  175. # first prefix (a) for authids assigned for AVSMP Clients (Cracked steam)
  176. AVSMP_Prefix1 = 4;
  177.  
  178. # Setti_Prefix1 (int)
  179. # STEAM_a:b:c
  180. # first prefix (a) for authids assigned for Setti server scanner
  181. Setti_Prefix1 = 5;
  182.  
  183. # SXEI_Prefix1 (int)
  184. # STEAM_a:b:c
  185. # first prefix (a) for authids assigned for sXeI clients
  186. SXEI_Prefix1 = 6;
  187.  
  188. # SSE3_Prefix1 (int)
  189. # STEAM_a:b:c
  190. # first prefix (a) for authids assigned for SSE3
  191. SSE3_Prefix1 = 7;
  192.  
  193. # Note that banid will use steamid WITHOUT any prefixes!
  194.  
  195.  
  196. # ========================================================
  197. # OTHER STUFF
  198. # ========================================================
  199.  
  200. # LoggingMode:
  201. # 0 = None
  202. # 1 = Console
  203. # 2 = Log Files
  204. # 3 = Both
  205. LoggingMode = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement