Website/index.php

23 lines
1.7 KiB
PHP
Raw Normal View History

2025-02-05 15:41:03 +01:00
<!DOCTYPE html>
<html>
<head>
<title>About OpenWF</title>
2025-02-05 15:41:03 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1">
2025-02-06 22:44:43 +01:00
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
2025-02-05 15:41:03 +01:00
</head>
2025-02-06 22:44:43 +01:00
<body data-bs-theme="dark">
2025-02-19 06:15:27 +01:00
<?php require "_components/navbar.php"; ?>
2025-02-06 22:44:43 +01:00
<div class="container mt-3">
<p>OpenWF is a software suite centered around customizing Warframe, including:</p>
2025-02-06 22:44:43 +01:00
<ul>
<li><b>SpaceNinjaServer</b> an <a href="https://openwf.io/SpaceNinjaServer.git">open-source</a> reimplementation of the game's web services. As we have custom server software, OpenWF avoids interference with the live game while allowing full customization of savedata.</li>
2025-04-29 00:50:45 +02:00
<li>The <b>Bootstrapper</b> our main DLL targeting the latest game version. Its core precept is connecting to custom servers, but it also has some QoL features and cheats as well as a scripting API, label replacements and metadata patches, allowing for extensive customization of the experience.</li>
2025-02-06 22:44:43 +01:00
</ul>
<a href="/guide.php" class="btn btn-primary">Get Started</a>
2025-04-29 01:45:20 +02:00
<h3 class="mt-3">Preservation</h3>
<p>OpenWF works entirely offline, so the versions supported by OpenWF will always be available to play and revisit, and it is indeed already possible to <a href="/old-versions<?=$ext;?>">revisit old versions</a>.</p>
2025-02-06 22:44:43 +01:00
</div>
2025-02-19 06:15:27 +01:00
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
2025-02-05 15:41:03 +01:00
</body>
</html>