https://github.com/nyrest/fallrimpriority
Elevate the CPU Priority of the Skyrim/Fallout process. Increase FPS and Prevent stutters caused by other processes.
https://github.com/nyrest/fallrimpriority
f4se f4se-plugins fallout fallout-3 fallout-4 fallout-4-vr fallout-newvegas modding oblivion rust skse skse-plugin skse64 skse64-plugin skyrim skyrim-ae skyrim-special-edition skyrim-vr the-elder-scrolls
Last synced: 7 months ago
JSON representation
Elevate the CPU Priority of the Skyrim/Fallout process. Increase FPS and Prevent stutters caused by other processes.
- Host: GitHub
- URL: https://github.com/nyrest/fallrimpriority
- Owner: Nyrest
- Created: 2021-06-08T11:26:54.000Z (almost 5 years ago)
- Default Branch: next
- Last Pushed: 2024-11-20T06:18:27.000Z (over 1 year ago)
- Last Synced: 2025-03-22T02:22:28.761Z (about 1 year ago)
- Topics: f4se, f4se-plugins, fallout, fallout-3, fallout-4, fallout-4-vr, fallout-newvegas, modding, oblivion, rust, skse, skse-plugin, skse64, skse64-plugin, skyrim, skyrim-ae, skyrim-special-edition, skyrim-vr, the-elder-scrolls
- Language: Rust
- Homepage: https://www.nexusmods.com/skyrimspecialedition/mods/50129
- Size: 223 KB
- Stars: 29
- Watchers: 1
- Forks: 6
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Fallrim Priority 4.0
Elevate the CPU Priority of the game process.
Increase FPS and Prevent stutters caused by other processes.
Kick other processes out. Skyrim/Fallout is the only one who should have the whole CPU.
> The 'next' branch is used to host the code for version 4.x (rewritten in Rust).
> You can find 3.x version on the 'main' branch.
## Features
1. Dynamic Priority Adjustment based on player behavior
2. CPU-0 schedule optimization to avoid competition with system kernel tasks
3. SMT hyper-threading optimization
## Supported Games
- Skyrim SE/VR/AE
- Fallout 4/VR
## Priority Levels
| Priority | Value |
|------------- |------ |
| Idle | 0 |
| Below Normal | 1 |
| Normal | 2 |
| Above Normal | 3 |
| High | 4 |
| Realtime | 5 |
> This mod uses `High` by default
> You can change it in `PriorityMod.toml`
> Run as Administrator is required for `Realtime`
## Note
### About `Realtime` Priority
https://docs.microsoft.com/en-us/windows/win32/procthread/scheduling-priorities#priority-class
>You should almost never use `Realtime`, because this interrupts system threads that manage mouse input, keyboard input, and background disk flushing. This class can be appropriate for applications that "talk" directly to hardware or that perform brief tasks that should have limited interruptions.