-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (69 loc) · 4.53 KB
/
index.html
File metadata and controls
75 lines (69 loc) · 4.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MMO Gamepad Overlay</title>
<link rel="icon" href="Resources/MMOGamepadOverlay.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css" />
</head>
<body class="stackedit">
<div class="stackedit__left">
<div class="stackedit__toc">
<ul>
<li><a href="#mmo-gamepad-overlay">MMO Gamepad Overlay</a>
<ul>
<li><a href="#download">Download</a></li>
<li><a href="#quick-start-guide">Quick Start Guide</a></li>
<li><a href="#customization">Customization</a></li>
<li><a href="#source-code">Source code</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="stackedit__right">
<div class="stackedit__html">
<h1 id="mmo-gamepad-overlay">MMO Gamepad Overlay</h1>
<div align="center">
<iframe width="560" height="315" src="https://www.youtube.com/embed/SBlLWR59GGk" title="MMO Gamepad Overlay app demo" allowfullscreen=""></iframe>
</div>
<p>This application was specifically built to play the classic-style MMO’s <em><strong>Monsters & Memories</strong></em> and <em><strong>Adrullan Online Adventures</strong></em>, as well as the <em>EverQuest</em> emulation servers <em><strong>Project 1999</strong></em> and <em><strong>Project Quarm</strong></em>, using a gamepad. It translates your controller input into keyboard and mouse input, alongside gamepad-controlled menus (displayed in a separate transparent window layered over the game) to enable many game functions with the few buttons available on a gamepad.</p>
<p>The default provided control schemes draw direct inspiration from the only MMORPG ever made exclusively for controller use - <em><strong>EverQuest Online Adventures</strong></em> for the <em>PlayStation 2</em>.</p>
<p>This application does <em><strong>NOT</strong></em>:</p>
<ul>
<li>Require (or even include) an installation process</li>
<li>Modify game files in any way</li>
<li>Modify, or even directly read, game memory (RAM)</li>
<li>Use any .dll code injection (overlays are separate external windows)</li>
<li>Use any libraries beyond the basic Windows API</li>
<li>Expect or solicit payments or donations</li>
<li>Use any proprietary or hidden source code</li>
</ul>
<p>Although built for the aforementioned MMO’s to emulate EQOA’s control scheme, it is very highly customizable and can make any control scheme you want and be used with any Windows game you want if you’re looking for a free, open-source, lightweight, portable, and versatile tool for using a gamepad with a game that doesn’t natively support one. The downside is that setting up a control scheme yourself requires some technical know-how and editing text files.</p>
<h2 id="download">Download</h2>
<p>Get the latest release <a href="https://github.com/OneCrazyCoder/MMOGamepadOverlay/releases">here</a>, including 32-bit (x86) and 64-bit (a64) versions.</p>
<p><em>Optional: You will also find there custom UI file packs for some games with the custom profile I personally use for them, made for even better integration between the game and the overlay.</em></p>
<h2 id="quick-start-guide">Quick Start Guide</h2>
<ol>
<li>Unzip the download and place the contained <code>.exe</code> wherever you want.
<ul>
<li>Note that it will save some <code>.ini</code> files into the same folder you put it in!</li>
</ul>
</li>
<li>Launch the saved .exe and select one of the example profiles (or create your own!)</li>
<li>Follow the prompts for options like auto-launching the game</li>
<li>Launch your game and play it using a gamepad!</li>
</ol>
<p>For basic control scheme when using an example profile, select Edit->Text Files and open the _Default.ini file listed. At the top of the file should be a large block comment explaining the controls for that game. More comments and details for the default control scheme are included throughout this file.</p>
<h2 id="customization">Customization</h2>
<p>Want to tweak a default control scheme or even build your own? See the <a href="profile-edit-ref.html">Custom Profile Editing Guide</a>.</p>
<h2 id="source-code">Source code</h2>
<p>Full source code is available on <a href="https://github.com/OneCrazyCoder/MMOGamepadOverlay">GitHub</a> with a very permissive open-source license.</p>
<h2 id="contact">Contact</h2>
<p>Questions? Comments? Concerns? Try the <a href="https://discord.gg/btRzWQ4N3N">Discord server</a> or post on <a href="https://github.com/OneCrazyCoder/MMOGamepadOverlay/discussions">GitHub Discussions</a>.</p>
</div>
</div>
</body>
</html>