Advertisement
Guest User

Untitled

a guest
Mar 4th, 2017
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.35 KB | None | 0 0
  1. # NOTE:
  2. # Line beginning with "#" (Number sign/hash) or ";" (semicolon)
  3. # indicates that the line is a comment. It will be ignored by
  4. # the emulator.
  5. #
  6. # Read one by one to understand the meaning of each settings,
  7. # don't scroll down too fast like you're reading
  8. # facebook feeds or twitter tweets. (:
  9.  
  10.  
  11. ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  12. ; This section will be used by the loader to start your
  13. ; games properly.
  14. ;
  15. ; Launch the loader with /help command to discover more.
  16. ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  17. [Launcher]
  18.  
  19.  
  20. ;-------------------------------------------------------------
  21. ; Target
  22. ; This must be pointed to your game executables (.exe)
  23. ; StartIn
  24. ; Point to your game folder. Don't set if you want to use
  25. ; emulator current directory. This will affect Target if
  26. ; the target uses relative path.
  27. ; CommandLine
  28. ; Additional command line for your games. Source (Valve)
  29. ; games requires -steam or you will get "insecure"
  30. ; message
  31. ;-------------------------------------------------------------
  32. Target = AoK HD.exe
  33. #StartIn = C:\Program Files (x86)\Steam\steamapps\common\Age of Empires II HD
  34. #CommandLine = -steam
  35.  
  36.  
  37. ;-------------------------------------------------------------
  38. ; This must be pointing to SmartSteamEmu.dll, you can use
  39. ; absolute path or relative path; relative to the loader.
  40. ; The emulator storage folder will be created on
  41. ; the same folder as SmartSteamEmu.dll
  42. ;-------------------------------------------------------------
  43. SteamClientPath = SmartSteamEmu.dll
  44. SteamClientPath64 = SmartSteamEmu64.dll
  45.  
  46.  
  47. ;-------------------------------------------------------------
  48. ; Persist
  49. ; Don't exit the loader. Required for games that uses batch
  50. ; file (.bat) or which launch multiple executables.
  51. ; InjectDll
  52. ; Inject SmartSteamEmu module into process instead of waiting
  53. ; for game to load it itself. If the game uses steam.dll
  54. ; you might need this to be turned on.
  55. ; ParanoidMode
  56. ; Warn you first if the steam client process is running
  57. ; before launching the game.
  58. ;-------------------------------------------------------------
  59. Persist = 0
  60. InjectDll = 0
  61. ParanoidMode = 0
  62.  
  63.  
  64.  
  65. ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  66. ; This section will be used by emulator.
  67. ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  68. [SmartSteamEmu]
  69.  
  70. ;-------------------------------------------------------------
  71. ; AppId
  72. ; Your game appid. http://store.steampowered.com/app/<AppId>
  73. ; Set to 0 to read from steam_appid.txt file.
  74. ;
  75. ; SteamIdGeneration - Specify one of these:
  76. ; - Static
  77. ; - Random
  78. ; - PersonaName
  79. ; - ip
  80. ; - Manual (you must set ManualSteamId)
  81. ; - GenerateRandom (Default, Generate steam id once and reuse the
  82. ; same generated steam id for the next time)
  83. ; Remember, some games store steam id in save file and steam id
  84. ; must match when loading the game again.
  85. ;
  86. ; ManualSteamId
  87. ; Example: 76561197960287930
  88. ;
  89. ; LowViolence
  90. ; Set this to 1 if you want to have a low violence game
  91. ; and/or residing in a country that requires you to have this
  92. ; restriction.
  93. ;
  94. ; Offline
  95. ; Set this to 1 to set emu as offline.
  96. ;
  97. ;-------------------------------------------------------------
  98. AppId = 221380
  99. Language = english
  100. SteamIdGeneration = GenerateRandom
  101. #ManualSteamId = 0
  102. LowViolence = 0
  103. Offline = 0
  104.  
  105.  
  106. ;-------------------------------------------------------------
  107. ; AvatarFilename
  108. ; Avatar file, only .png is supported
  109. ; PersonaName
  110. ; Set this to your name *OR* use one of these:
  111. ; - ComputerName
  112. ; - AccountName (default)
  113. ; AutomaticallyJoinInvite
  114. ; When somebody send invite to you, you will automatically
  115. ; accept their invite.
  116. ;-------------------------------------------------------------
  117. AvatarFilename = avatar.png
  118. PersonaName = ComputerName
  119. AutomaticallyJoinInvite = 1
  120.  
  121.  
  122. ;-------------------------------------------------------------
  123. ; StorageOnAppdata
  124. ; Storage (save game) files will be saved on local account
  125. ; appdata folder.
  126. ; C:\Users\<YourName>\AppData\SmartSteamEmu
  127. ;
  128. ; If you lose your savegame files after using this
  129. ; version, disable this value or move your savegame files to
  130. ; appdata folder.
  131. ;
  132. ; SeparateStorageByName
  133. ; Each "PersonaName" will have its own storage folder for save
  134. ; game, storage file, stats, achievements and avatar.
  135. ;
  136. ; Before
  137. ; SmartSteamEmu\<game files>
  138. ; After
  139. ; SmartSteamEmu\my name\<own game files>
  140. ; SmartSteamEmu\his name\<own game files>
  141. ; SmartSteamEmu\her name\<own game files>
  142. ;
  143. ; RemoteStoragePath
  144. ; Specify your own location of remote storage path. The
  145. ; default location is on SmartSteamEmu\remote_<appid> or
  146. ; SmartSteamEmu\<persona name>\remote_<appid>.
  147. ;-------------------------------------------------------------
  148. StorageOnAppdata = 1
  149. SeparateStorageByName = 0
  150. #RemoteStoragePath = %USERPROFILE%\Documents\My Games\%SteamAppId%
  151.  
  152.  
  153. ;-------------------------------------------------------------
  154. ; EnableHTTP
  155. ; If disabled, all calls to create HTTP request will fail.
  156. ; It is advised to keep this turned off.
  157. ;
  158. ; EnableInGameVoice
  159. ; Enable In-Game voice using microphone input.
  160. ; The implementation is not yet finished. It is recommended
  161. ; to use other application for voice chat.
  162. ;
  163. ; EnableLobbyFilter
  164. ; Turn this off to find all lobbies within the same app id.
  165. ;
  166. ; EnableOverlay
  167. ; Tell game that we have overlay enabled.
  168. ;
  169. ; DisableFriendList
  170. ; Disable friend list from appear in game.
  171. ;
  172. ; DisableLeaderboard
  173. ; Disable leaderboard by not returning any leaderboad when
  174. ; game requested it
  175. ;
  176. ; SecuredServer
  177. ; VAC server. If the games complain it starts *insecure*ly
  178. ; or to remove any plugins before attempting to connect to
  179. ; a VAC secured server, set this to 0.
  180. ;
  181. ; VR
  182. ; Tell supported games to enable virtual reality.
  183. ;
  184. ; RandomItemAwards
  185. ; Give random items in CS:GO
  186. ;
  187. ; DisableGC
  188. ; Disable GameCoordinator emulation
  189. ;-------------------------------------------------------------
  190. EnableHTTP = 0
  191. EnableInGameVoice = 0
  192. EnableLobbyFilter = 1
  193. EnableOverlay = 0
  194. DisableFriendList = 0
  195. DisableLeaderboard = 0
  196. SecuredServer = 1
  197. VR = 0
  198. RandomItemAwards = 1
  199. DisableGC = 0
  200.  
  201.  
  202. ;------------------------
  203. ; Master server list
  204. ; In "<ip>:<port>" format. Multiple server is separated by
  205. ; a space.
  206. ;
  207. #MasterServer = 46.165.194.16:27011 46.4.71.67:27011 46.165.194.14:27011
  208. #MasterServerGoldSrc = 46.165.194.16:27010 46.4.71.67:27010 46.165.194.14:27010
  209. MasterServer = 188.40.40.201:27010
  210. MasterServerGoldSrc = 188.40.40.201:27010
  211.  
  212.  
  213. ;------------------------
  214. ; Quick join hotkey for private match.
  215. ; Valid modifier are: BACKSPACE, TAB, ENTER, SHIFT, CONTROL, ALT
  216. ; PAUSE, CAPSLOCK, ESCAPE, SPACE, PAGEUP, PAGEDOWN, END, HOME,
  217. ; INSERT, DELETE, F1-F12.
  218. ;
  219. ; Must be a combination, example: CONTROL + J
  220. ;
  221. QuickJoinHotkey = SHIFT + TAB
  222.  
  223.  
  224.  
  225. ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  226. ; Overlay Plugins
  227. ;
  228. ; SSEOverlay plugins comes with two functions, overlay being the
  229. ; main one and OnlineMode which allow you to connects to other
  230. ; players worldwide. To open overlay, use the QuickJoinHotkey
  231. ; defined on [SmartSteamEmu] section.
  232. ;
  233. ; The overlay may be highly unstable for some games and you may
  234. ; need to disable them.
  235. ;
  236. ; The online mode is turned on by default, if you wish not to
  237. ; connect to others or care for privacy or security, simply turn
  238. ; the option off.
  239. ;
  240. ; Language is defined in Language.ini inside Plugins\SSEOverlay
  241. ; folder.
  242. ;
  243. ; ScreenshotHotkey captures game screen using these hotkey. The
  244. ; rules is same as [SmartSteamEmu] QuickJoinHotkey
  245. ;
  246. ; HookRefCount allows DX9 games to be safely shutdown the device
  247. ; so it can change resolution without crash. If you experience
  248. ; crash with overlay try to disable this first.
  249. ;
  250. ; If you specified OnlineKey, you will be connected only to the
  251. ; same people that uses same OnlineKey.
  252. ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  253. [SSEOverlay]
  254. DisableOverlay = 0
  255. OnlineMode = 1
  256. Language = english
  257. ScreenshotHotkey = F12
  258. HookRefCount = 1
  259. ;OnlineKey =
  260.  
  261.  
  262.  
  263. ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  264. ; DLC subscriptions
  265. ;
  266. ; Use the following format for subscription:
  267. ; <appid> = <1/0> or <DLC Name>
  268. ; Example:
  269. ; 57923 = Duke Nukem Forever: Hail to the Icons Parody Pack
  270. ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  271. [DLC]
  272. 239550 = Age of Empires II HD: The Forgotten
  273. 355950 = Age of Empires II HD: The African Kingdoms
  274. 488060 = Age of Empires II HD: Rise of the Rajas
  275.  
  276. ;------------------------
  277. ; If requested subscription id cannot be found here,
  278. ; SmartSteamEmu will use this default value.
  279. ;
  280. Default = 1
  281.  
  282. src103582791433980119 = Payday 2 Community
  283. src103582791435633447 = Payday 2 Mod - HoxHud
  284.  
  285.  
  286.  
  287. ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  288. ; Achievements override
  289. ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  290. [Achievements]
  291.  
  292. ; Unlocks all achievements
  293. UnlockAll = 0
  294.  
  295. ; If the game loops when reading stats/achievements, enable this.
  296. FailOnNonExistenceStats = 0
  297.  
  298.  
  299. ; If you want to modify individual achievements, use the
  300. ; following format:
  301. ; <achievement name> = 1/0
  302.  
  303.  
  304.  
  305. ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  306. ; Player Management
  307. ;
  308. ; Allow or deny who will able to connect to your server
  309. ;
  310. ; To deny or ban connection from steam id, use the following
  311. ; format:
  312. ; STEAM_0:X:YYY = 0
  313. ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  314. [PlayerManagement]
  315.  
  316. ; Allow anyone to connect. If set to false, only allow connection
  317. ; from recognized steam emu.
  318. AllowAnyoneConnect = 1
  319.  
  320. ; Set a password to allow ban/unban remotely. The password must > 4
  321. ; characters long. Remove # infront AdminPassword to enable password.
  322. ; App restart is *required* to update the password.
  323. #AdminPassword =
  324.  
  325.  
  326.  
  327. ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  328. ; Direct Patch
  329. ;
  330. ; Allow you to patch loaded game modules (.exe, .dll) on memory.
  331. ;
  332. ; Use the following format:
  333. ; ModuleName.ext=Location;OriginalBytes;PatchBytes
  334. ; Example:
  335. ; mymodule.dll=12ab;74fe;ebfe
  336. ; mymodule.dll=*;74fe;ebfe
  337. ; mymodule.dll=*;74??;eb
  338. ; mymodule.dll=*;74??;9090??ebfe
  339. ;
  340. ; DirectPatch will only patch once per entry. The location is the
  341. ; file offset to patch. You can use asterisks (*) to search for
  342. ; pattern given by OriginalBytes.
  343. ;
  344. ; OriginalBytes is use to validate given offset or search for
  345. ; pattern.
  346. ;
  347. ; If you set the location to offsets, the OriginalBytes will be
  348. ; used to validate the bytes on that offsets. If it match, it
  349. ; will patch the offset using PatchBytes.
  350. ;
  351. ; If you set the location to asterisks (*), the OriginalBytes
  352. ; will be used as a pattern to search and once found matching
  353. ; pattern, it will patch using PatchBytes.
  354. ;
  355. ; Both OrignalBytes and PatchBytes can include ?? to indicates
  356. ; wildcard.
  357. ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  358. [DirectPatch]
  359. ; Dead Rising : OTR - Windowed mode
  360. #deadrising2otr.exe=508bf8;00f3;01
  361.  
  362.  
  363.  
  364. ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  365. ; Logging and debugging
  366. ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  367. [Debug]
  368.  
  369. ;------------------------
  370. ; EnableLog
  371. ; Enable/Disable log file output.
  372. ; MarkLogHotkey
  373. ; Mark the logfile with timestamp using this hotkey before
  374. ; performing some action to make it easier when debugging.
  375. ; LogFilter
  376. ; Filter log output. Separate by semicolon.
  377. ;
  378. EnableLog = 0
  379. MarkLogHotkey = CTRL + ALT + M
  380. LogFilter = User logged on
  381.  
  382.  
  383. ;------------------------
  384. ; Create dump file when games crash. This can helps developers
  385. ; to investigate what causes the game crash and to improve this
  386. ; emulator.
  387. ;
  388. Minidump = 1
  389.  
  390.  
  391.  
  392. ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  393. ; Emulator networking
  394. ; Warning: Advanced settings! Best to leave it as is if you
  395. ; don't know what these settings are for.
  396. ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  397. [Networking]
  398.  
  399.  
  400. ;------------------------
  401. ; BroadcastAddress
  402. ; Set broadcast address used by emulator discovery system.
  403. ; To broadcast to multiple addresses, separate by a space.
  404. ; To connect to other computer online, specify their ip or
  405. ; ip:port here.
  406. ; ListenPort
  407. ; Communication port used by this emulator, must match with
  408. ; other player or it won't find each other.
  409. ; MaximumPort
  410. ; Attempt to use another next port when current listen port
  411. ; is already in use.
  412. ; DiscoveryInterval
  413. ; Interval for discover packet in second. A small packet
  414. ; sent by the emulator to broadcast address to discover
  415. ; other players.
  416. ; MaximumConnection
  417. ; Number of maximum allowed connection
  418. ;
  419. BroadcastAddress = 255.255.255.255
  420. ListenPort = 31313
  421. MaximumPort = 10
  422. DiscoveryInterval = 3
  423. MaximumConnection = 200
  424.  
  425.  
  426.  
  427. ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  428. ; steam_api.dll replacement.
  429. ;
  430. ; Allow you to start game directly without the launcher.
  431. ;
  432. ; To start the game without the launcher, rename original
  433. ; steam_api.dll to ValveApi.dll and then rename
  434. ; SmartSteamEmu.dll to steam_api.dll
  435. ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  436. [SteamApi]
  437.  
  438. ; The emulator will try to search for interface version
  439. ; automatically inside original steam api.
  440. ;
  441. OriginalSteamApi = ValveApi.dll
  442. OriginalSteamApi64 = ValveApi64.dll
  443.  
  444.  
  445. ; Manually specify interface version if no original steam_api.dll
  446. ; found. It must match the steam_api.dll that come with the game.
  447. ;
  448. SteamClient = 15
  449. SteamUser = 16
  450. SteamGameServer = 1
  451. SteamFriends = 13
  452. SteamUtils = 5
  453. SteamMatchMaking = 9
  454. SteamMatchMakingServers = 2
  455. SteamUserStats = 11
  456. SteamGameServerStats = 1
  457. SteamApps = 5
  458. SteamMasterServerUpdater = 1
  459. SteamNetworking = 5
  460. SteamRemoteStorage = 10
  461. SteamScreenshots = 1
  462. SteamHTTP = 2
  463. SteamUnifiedMessages = 1
  464. SteamController = 1
  465. SteamUGC = 1
  466. SteamAppList = 1
  467. SteamMusic = 1
  468. SteamMusicRemote = 1
  469. SteamHTMLSurface = 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement