Browse Source

Add install guide

master
NGnius 4 years ago
parent
commit
6c6311d4c0
2 changed files with 54 additions and 3 deletions
  1. +9
    -3
      site/guides/index.html
  2. +45
    -0
      site/guides/install.html

+ 9
- 3
site/guides/index.html View File

@@ -13,7 +13,7 @@
<meta name="og:url" content="https://www.exmods.org" />
<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" />
<link rel="stylesheet" href="/static/style.css" type="text/css" />
<title>Exmods Guides</title>
</head>
<body>
@@ -22,11 +22,17 @@
<ul>
<li>
<a href="first.html"><span class="title">Getting Started</span><a>
<p>This guide lays the groundwork for modding Gamecraft. Subjects covered include: <br/>
<p>This guide lays the groundwork for modding Gamecraft. Subjects covered include:<br/>
- Setting up your development environment<br/>
- Making your first mod in Visual Studio<br/>
- Overview of Gamecraft's design<br/>
- Best practices<br/> </p>
- Best practices</p>
</li>
<li>
<a href="install.html"><span class="title">Installing Mods</span><a>
<p>This guide walks you through installing mods for Gamecraft. If the mod you are trying to install has it's own instructions, follow those instead. Subjects covered include:<br/>
- Patching Gamecraft<br/>
- Adding mods</p>
</li>
</ul>
</body>


+ 45
- 0
site/guides/install.html View File

@@ -0,0 +1,45 @@
<!DOCTYPE html>

<html lang="en">
<head>
<meta name="theme-color" content="#20c420" />
<meta name="author" content="Exmods community" />
<meta name="keywords" content="exmods,gamecraft,modding,mod" />
<meta name="og:type" content="website" />
<meta name="og:title" content="Exmods" />
<meta name="og:description" content="Gamecraft modding website" />
<meta name="description" content="Gamecraft modding website" />
<meta name="og:image" content="/static/favicon.png" />
<meta name="og:url" content="https://www.exmods.org" />
<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 Installing Mods</title>
</head>
<body>
<h1>Installing Gamecraft Mods</h1>
<h5>by NGniusness</h5>
<h3>Patching The Game</h3>
<h5>Gamecraft: <a href="https://www.youtube.com/watch?v=msX4oAXpvUE">I'm getting hacked</a></h5>
<p>The first step towards installing mods in Gamecraft is patching the game with the <a href="https://git.exmods.org/modtainers/GCIPA/releases">latest release of GCIPA</a>.
If you've already done this for another Gamecraft mod, you can skip this step.
To install GCIPA, download the latest release and unzip it to where you installed Gamecraft.
You can find where Gamecraft is installed through your Steam Library by right-clicking Gamecraft and selecting "Properties...".
A properties window should open, with a tab called "Local Files".
From that tab, click on "Browse Local Files..." and a file explorer menu should open.
When you've extracted the files, you should see three new files, one called IPA (aka IPA.exe), and a new folder called IPA.
Drag and drop Gamecraft (aka Gamecraft.exe) onto the IPA file (IPA.exe) to patch the game.
To confirm that it's successful, an empty folder called "Plugins" should have been created as a result.
If the Plugins folder is there, the game has been successfully patched and you can move on to the next step.
(NOTE: you will need to re-patch the game everytime Steam updates Gamecraft)</p>
<h3>Adding Mods</h3>
<h5>Because multiplying mods is too hard</h5>
<p>For this step, you'll need the "Plugins" folder that IPA created for you.
Navigate into that "Plugins" folder and unzip the mod there.
You should now see a file called something similar to "[name of mod].dll".
Depending on the mod, there may be some other file or folders as well, but you don't need to worry about those provided there's one similar to "[name of mod].dll".
If you accidentally extract a mod into it's own folder within the Plugins folder, the mod will not work.
Your mod is now installed. The next time you launch Gamecraft, the mod will be ready to go.
If you have the UITweaks mod installed, you will see now the name of the mod on Gamecraft's main menu.</p>
</body>
</html>

Loading…
Cancel
Save