Fake FPS
<p><a href="https://www.youtube.com/watch?v=v3cF6aD5YN4"><img src="https://img.youtube.com/vi/v3cF6aD5YN4/0.jpg" alt="Fake FPS Mod - Presentation Video" /></a></p>
This client-side modification provides the ability to display a fake and customizable FPS counter at the top of your Minecraft screen! Great for fun moments, recording videos, or playing a trick on friends making them believe you have 1000 FPS! 😉
How does the modification work?
"Fake FPS" is a completely client-side modification, meaning it only needs to be installed in your Minecraft game, not on the server. The working principle is as follows:
-
⚙️ Configuration: After the first launch of the game with the mod, a configuration file
fake_fps.jsonis created in theconfig/oas_work/folder. -
📖 Reading settings: The modification reads the
fake_fps.jsonfile and determines:-
⏱️ Specified range of the minimum value (
fps_min): the smallest fake FPS value for display (needs to be configured in thefake_fps.jsonfile). -
��� Specified range of the maximum value (
fps_mx): the largest fake FPS value for display (needs to be configured in thefake_fps.jsonfile). -
✅ Activation status (
activated): if specified astrue, fake FPS display is enabled, iffalse— disabled.
-
-
🎲 Random generation: Every second, a random FPS value is generated between the
fps_minandfps_mxparameters set in the configuration. -
📊 Display: The fake FPS value is shown in the top left corner of the game screen.
How to use?
The most convenient way is configuration — follow these steps:
-
📂 Locate the configuration file: After launching Minecraft with the mod at least once, go to the
config/oas_work/folder in your game directory. Open thefake_fps.jsonfile with a text editor. -
✏️ Modify settings:
{
"fps_min": ..., // specify the minimum fake FPS value
"fps_mx": ..., // specify the maximum fake FPS value
"activated": ... // activate display with "true", deactivate with "false"
}
[IMPORTANT] Always ensure
fps_mxis greater thanfps_min.
-
💾 Save changes: save the updated
fake_fps.jsonfile. -
🔄 Restart Minecraft to apply the implemented updates.
Modification features
It's important to note several key points:
-
💻 The product is client-side only — for locally run Minecraft. Does not require installation on the server itself.
-
⚙️ Easily customizable through editing
fake_fps.json. Allows you to organize the display property within a specified value range. -
📍 The configuration file is located in
config/oas_work/in your Minecraft installation folder. -
⚠️ This is purely visual impact — does not change actual FPS in any way and has no effect whatsoever on real performance. The mod simply displays an artificially created value.