|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!DOCTYPE html>
-
- <html lang="en">
- <head>
- <meta name="theme-color" content="#20c420" />
- <meta name="author" content="Exmods community" />
- <meta name="keywords" content="exmods,techblox,modding,mod" />
- <meta name="og:type" content="website" />
- <meta name="og:title" content="Exmods" />
- <meta name="og:description" content="Techblox modding website" />
- <meta name="description" content="Techblox modding website" />
- <meta name="og:image" content="../static/favicon.png" />
- <meta name="og:url" content="https://www.exmods.org" />
- <meta charset="UTF-8" />
- <link rel="icon" href="../static/favicon.png" type="image/x-icon"/>
- <link rel="shortcut icon" href="../static/favicon.png" type="image/x-icon"/>
- <link rel="stylesheet" href="../static/style.css" type="text/css" />
- <title>Exmods Guides</title>
- </head>
- <body>
- <h1>Modding Guides</h1>
- <h3>Welcome to a collection of guides about modifying Techblox.</h3>
- <ul>
- <a href="quickstart.html">
- <li>
- <span class="title">Quick Start</span>
- <p>This guide walks you through installing a mod manager for Gamecraft. Subjects covered include:<br/>
- - Downloading and running GCMM<br/>
- - Installing mods</p>
- </li>
- </a>
- <a href="first.html">
- <li>
- <span class="title">Getting Started with Development</span>
- <p>This guide lays the groundwork for modding Techblox. Subjects covered include:<br/>
- - Setting up your development environment<br/>
- - Making your first mod in Visual Studio<br/>
- - Overview of Gamecraft's (aka Techblox) design<br/>
- - Best practices</p>
- </li>
- </a>
- <a href="install.html">
- <li>
- <span class="title">Installing Mods</span>
- <p>This guide walks you through installing mods for Techblox. If the mod you are trying to install has it's own instructions, follow those instead. Subjects covered include:<br/>
- - Patching Techblox<br/>
- - Adding mods</p>
- </li>
- </a>
- </ul>
- <footer>
- exmods.org|<a href="https://git.exmods.org/ExMods/html-site">Site Repository</a>|<a href="https://exmods.org">Home</a>|<a href="https://discord.gg/2CtWzZT">Discord</a>|<a href="https://twitter.com/GamecraftMods">Twitter</a>
- </footer>
- </body>
- </html>
|