Advertisement
Guest User

Tick Fix Settings

a guest
Apr 10th, 2022
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 KB | None | 0 0
  1. ;This plugin now requires Windows 7 or above.
  2. ;Only enable options if you know what you're doing.
  3. ;The ini by default only has the safest options enabled now.
  4.  
  5. [Main]
  6.  
  7. ;Fix for the 64Hz microstutter bug. Settings below in [GTC]
  8. bGTCFix = 1
  9.  
  10. ;Self Explanatory
  11. bFastExit = 1
  12.  
  13. ;Tweaks for the game's hashtables. Helps a LOT with menu lag. Settings below in [Hashtables]
  14. bRedoHashtables=1
  15.  
  16. ;This modifies vanilla DX9 behavior so textures don't get mirrored into RAM, decreasing RAM usage. More settings below in [DirectX]
  17. ;You'll have to use windowed mode or OneTweak, exclusive fullscreen isn't supported.
  18. ;Disabled by default due to the potential to cause issues if the mentioned procedures aren't followed.
  19. bModifyDirectXBehavior=1
  20.  
  21. ;Threading tweaks. They can give you a pretty nice performance boost at the cost of some stability. Settings below in [ThreadingTweaks]
  22. bEnableThreadingTweaks=1
  23.  
  24.  
  25. [GTC]
  26.  
  27. ;High FPS Fix. You don't need this if your fps are below 50 all the time. More settings below in [FPSFix]
  28. bFPSFix=1
  29.  
  30. ;Safer, but somewhat less accurate GTC Fix, disabled by default. Enable it if you have issues with the default fix.
  31. bAlternateGTCFix=0
  32.  
  33. ;If for some reason you get weird bugs like the game running at wrong speeds, try using this. Capping your FPS is mandatory with it.
  34. bRemoveGTCLimits=0
  35.  
  36. [ThreadingTweaks]
  37.  
  38. ;This is the equivalent of a very famous tweak in a similar mod to this (Renderer+0x180 suppress) (Hook Critical Section) (experimental).
  39. bRemoveRCSafeGuard=1
  40.  
  41. ;Extra Critical section tweaks found to be beneficial, recommended to leave enabled
  42. bTweakMiscCriticalSections=1
  43.  
  44.  
  45. [FPSFix]
  46.  
  47. ;Due to high amounts of confused bug reports, there's a need to clarify. This is NOT AN FPS LIMITER. These are caps on game logic ticks, which means the game will cap its logic to said fps even if your fps goes above, which is required for load routines. You MUST ensure your game FPS do not go above iMaxFPSTolerance or below iMinFPSTolerance, be it with an FPS capper or another method, otherwise the game's logic will either speed up or slow down.
  48.  
  49. ;Maximum tolerance for high FPS fix. Set this to your fps cap plus 60, if your FPS is capped or Vsync is enabled.
  50. ;Otherwise, set it to the maximum FPS you usually get plus 60.
  51. ;If you experience spider fingers bug, ignore above, set this to 59, and cap your FPS to 59 or 60.
  52. iMaxFPSTolerance=500
  53.  
  54. ;Minimum tolerance for high FPS fix, recommended to leave at default.
  55. iMinFPSTolerance = 24
  56.  
  57. ;Fix for physics issues caused by high FPS.
  58. bfMaxTime=1
  59.  
  60. ;Fix for lipsync issues caused by high FPS.
  61. fDialogFixMult=2.000
  62.  
  63. ;Attempted fix for the Spider Hands bug.
  64. bSpiderHandsFix=1
  65.  
  66.  
  67. [DirectX]
  68.  
  69.  
  70. ;Enables triple buffering, which helps with frame pacing and otherwise smoother FPS.
  71. bToggleTripleBuffering=0
  72.  
  73. ;Number of backbuffers for triple buffering. 2 is ideal, 3 can also work. 4 and above are only available with D3D9Ex, otherwise your game will fail to init the renderer on startup.
  74. iNumBackBuffers=2
  75.  
  76. ;Makes D3D9 manage resources instead of your driver. Works well with triple buffering.
  77. bD3D9ManageResources=1
  78.  
  79.  
  80. [Hashtables]
  81. ;Resize the hashtable bucket space.
  82. bResizeHashtables=1
  83.  
  84.  
  85. [D3D9Ex]
  86. ;You might want to disable this if you get framedrops with D3D9Ex, but it could also make frame drops even worse. It depends on the PC you have.
  87. bUseDynamicResources=1
  88.  
  89. ;FlipEx, a swapchain method that can heavily help with stutters and lag in G Sync. However due to its nature it bugs the native screenshot feature.
  90. bUseFlipExSwapMode=0
  91.  
  92.  
  93.  
  94.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement