neoBeta/projects/timekeeper/index.html
2025-10-28 15:18:03 +00:00

66 lines
No EOL
2.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="/assets/stylesheets/styles.css" media="screen">
<link rel="stylesheet" href="/assets/stylesheets/project.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TimeKeeper - neoBeta</title>
</head>
<body>
<div id="everythingHelper">
<aside>
<header>
<div id="linksBox">
<div id="headerLinksAndTitle">
<div id="logoTitle">
<img src="/assets/logo.png" id="logo">
<h1 id="title" class="rainbowText">neoBeta</h1>
</div>
<ul id="headerLinks">
<li><a href="/">home</a></li>
<li><a href="/search">search</a></li>
<li><a href="/allprojects">index</a></li>
<li><a href="/contribute">contribute</a></li>
</ul>
</div>
<p id="credits">Adrian Victor, 2025 (<a href="https://git.disroot.org/adrianvictor/neoBeta">Unlicense</a>)</p>
</div>
</header>
</aside>
<div id="project">
<div id="projectHeader">
<img src="logo.png">
<div id="projectTitleSubtitle">
<div id="projectTitleAuthor">
<h1 id="projectTitle">TimeKeeper</h1>
<p id="projectAuthor">by <a href="/authors/tenkuma">tenkuma</a></p>
</div>
<p id="projectSubtitle">Syncs real world time with your Minecraft server time.</p>
</div>
<a id="downloadLink" href="https://modrinth.com/plugin/timekeeper/versions"><button id="downloadButton">Download</button></a>
</div>
<main id="projectDescription">
<p>This is a plugin for Minecraft beta that syncs the real world time with your in-game time. Logo by <a href="https://github.com/malcolmriley/unused-textures/blob/master/items/">malcolmriley</a>.</p>
<h2>How it works</h2>
<p>It will calculate and change the game time every second (that's 20 ticks and can be changed in the config), it will use your computer's timezone as default if the config <code>timezone</code> value does not exist.</p>
<h2>Performance</h2>
<p>I am not sure if this plugin has any significant performance hit, it runs code every few ticks (you can in/decrease the frequency in the config) and that is not the best approach for doing this, but it's the only that works in beta. Using it with <code>ticksBetweenUpdate: 1</code> does not seem to change the performance in any way. The specifications for the computer used for the tests:</p>
<pre><code>Host: 83AF IdeaPad 1 14IAU7
CPU: 12th Gen Intel i5-1235U (12) @ 1.300GHz
GPU: Intel Alder Lake-UP3 GT2 [Iris Xe Graphics]
Memory: 10097MiB / 15709MiB
</code></pre>
</main>
</div>
</div>
</body>
</html>