-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
353 lines (345 loc) · 17.3 KB
/
index.html
File metadata and controls
353 lines (345 loc) · 17.3 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OpenCoreMMO - Open Source MMORPG Server</title>
<link rel="icon" type="image/svg+xml" href="https://avatars.githubusercontent.com/u/193319675?s=400&u=7a7fcc1649846debe978bd36e16b1743c6c363e8&v=4">
<link rel="apple-touch-icon" href="https://avatars.githubusercontent.com/u/193319675?s=400&u=7a7fcc1649846debe978bd36e16b1743c6c363e8&v=4">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<nav>
<div class="logo">
<img src="https://avatars.githubusercontent.com/u/193319675?s=400&u=7a7fcc1649846debe978bd36e16b1743c6c363e8&v=4" alt="OpenCoreMMO Logo" class="logo-img">
<span>OpenCoreMMO</span>
</div>
<ul class="nav-links">
<li><a href="#features">Features</a></li>
<li><a href="#technology">Tech Stack</a></li>
<li><a href="#downloads">Downloads</a></li>
<li><a href="#installation">Installation</a></li>
<li><a href="#community">Community</a></li>
<li><a href="https://opencoremmo.gitbook.io/ocm/" target="_blank">Documentation</a></li>
<li><a href="https://github.com/OpenCoreMMO/OpenCoreMMO" target="_blank" class="nav-github"><i class="fab fa-github"></i></a></li>
</ul>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</nav>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="hero-content">
<img src="https://avatars.githubusercontent.com/u/193319675?s=400&u=7a7fcc1649846debe978bd36e16b1743c6c363e8&v=4" alt="OpenCoreMMO Logo" class="hero-logo">
<h1>OpenCoreMMO</h1>
<p>Open-source MMORPG server framework for building your own multiplayer worlds</p>
<div class="btn-group">
<a href="https://github.com/OpenCoreMMO/OpenCoreMMO" class="btn btn-primary" target="_blank">
<i class="fab fa-github"></i> View on GitHub
</a>
<a href="#installation" class="btn btn-secondary">
<i class="fas fa-download"></i> Get Started
</a>
</div>
</div>
</section>
<!-- Features Section -->
<section class="features" id="features">
<div class="container">
<div class="section-title">
<h2>Key Features</h2>
<p>Everything you need to build your MMORPG server</p>
</div>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-code-branch"></i>
</div>
<h3>Modular Design</h3>
<p>Extensible plugin system allows you to add custom gameplay mechanics without modifying the core.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-database"></i>
</div>
<h3>Persistent World</h3>
<p>Robust database integration for player data, world state, and game economies that survive restarts.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-shield-alt"></i>
</div>
<h3>Security First</h3>
<p>Built-in anti-cheat mechanisms and secure authentication to protect your players and game world.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-users"></i>
</div>
<h3>Community Driven</h3>
<p>Active development community with regular updates, bug fixes, and new features based on feedback.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-file-code"></i>
</div>
<h3>Well Documented</h3>
<p>Comprehensive documentation and API references to help developers get started quickly.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-scroll"></i>
</div>
<h3>Scripting</h3>
<p>Powerful LuaJIT integration for creating custom game logic, quests, and gameplay mechanics with ease.</p>
</div>
</div>
</div>
</section>
<!-- Technology Section -->
<section class="technology" id="technology">
<div class="container">
<div class="section-title">
<h2>Technology Stack</h2>
<p>Built with modern, reliable technologies</p>
</div>
<div class="tech-grid">
<div class="tech-card">
<div class="tech-icon">
<i class="fab fa-microsoft"></i>
</div>
<h3>C#</h3>
<p>Modern, type-safe programming language with excellent performance and developer productivity.</p>
<span class="tech-badge">Language</span>
</div>
<div class="tech-card">
<div class="tech-icon">
<i class="fas fa-cube"></i>
</div>
<h3>.NET 10</h3>
<p>Latest version of Microsoft's cross-platform framework with improved performance and new features.</p>
<span class="tech-badge">Framework</span>
</div>
<div class="tech-card">
<div class="tech-icon">
<i class="fas fa-database"></i>
</div>
<h3>Database Support</h3>
<p>Flexible database options including InMemory for development, PostgreSQL for production, and SQLite for lightweight deployments.</p>
<span class="tech-badge">Multi-DB</span>
</div>
<div class="tech-card">
<div class="tech-icon">
<i class="fas fa-terminal"></i>
</div>
<h3>Console Debug Logging</h3>
<p>Comprehensive logging system with detailed debug information for troubleshooting and monitoring.</p>
<span class="tech-badge">Debugging</span>
</div>
<div class="tech-card">
<div class="tech-icon">
<i class="fas fa-vial"></i>
</div>
<h3>XUnit Testing</h3>
<p>Robust unit testing framework ensuring code quality and reliability through comprehensive test coverage.</p>
<span class="tech-badge">Testing</span>
</div>
<div class="tech-card">
<div class="tech-icon">
<i class="fab fa-docker"></i>
</div>
<h3>Docker</h3>
<p>Containerization support for easy deployment, scaling, and consistent environments across development and production.</p>
<span class="tech-badge">Container</span>
</div>
<div class="tech-card">
<div class="tech-icon">
<i class="fas fa-bolt"></i>
</div>
<h3>LuaJIT</h3>
<p>High-performance Just-In-Time compiler for Lua, enabling fast and efficient scripting for game logic and custom content.</p>
<span class="tech-badge">Scripting</span>
</div>
</div>
</div>
</section>
<!-- Downloads Section -->
<section class="downloads" id="downloads">
<div class="container">
<div class="section-title">
<h2>Downloads</h2>
<p>Get the latest stable releases and pre-built binaries</p>
</div>
<div class="downloads-grid">
<a href="https://github.com/OpenCoreMMO/OpenCoreMMO/releases" class="download-card" target="_blank">
<div class="download-icon">
<i class="fas fa-download"></i>
</div>
<h3>Latest Release</h3>
<p>Download the most recent stable version with all bug fixes and features.</p>
<div class="download-info">
<span class="download-badge">Stable</span>
<span class="download-arrow"><i class="fas fa-arrow-right"></i></span>
</div>
</a>
<a href="https://github.com/OpenCoreMMO/OpenCoreMMO/releases" class="download-card" target="_blank">
<div class="download-icon">
<i class="fas fa-code-branch"></i>
</div>
<h3>Pre-release Versions</h3>
<p>Try upcoming features and improvements before they're officially released.</p>
<div class="download-info">
<span class="download-badge pre-release">Pre-release</span>
<span class="download-arrow"><i class="fas fa-arrow-right"></i></span>
</div>
</a>
<a href="https://codeload.github.com/OpenCoreMMO/OpenCoreMMO/zip/refs/heads/develop" class="download-card" target="_blank">
<div class="download-icon">
<i class="fab fa-github"></i>
</div>
<h3>Source Code</h3>
<p>Download the complete source code as a ZIP archive for offline development.</p>
<div class="download-info">
<span class="download-badge source">Source</span>
<span class="download-arrow"><i class="fas fa-arrow-right"></i></span>
</div>
</a>
</div>
<div class="download-note">
<p><i class="fas fa-info-circle"></i> All downloads redirect to our GitHub Releases page where you can find detailed release notes and platform-specific packages.</p>
</div>
</div>
</section>
<!-- Installation Section -->
<section class="installation" id="installation">
<div class="container">
<div class="section-title">
<h2>Installation Guide</h2>
<p>Get your OpenCoreMMO server running in minutes</p>
</div>
<div class="install-steps">
<div class="step">
<div class="step-number">1</div>
<div class="step-content">
<h3>Download and install .NET 10</h3>
<p>Get the latest .NET 10 runtime from the official Microsoft website:</p>
<div class="code-block"><a href="https://dotnet.microsoft.com/download/dotnet/10.0" class="external-link" target="_blank">https://dotnet.microsoft.com/download/dotnet/10.0</a></div>
</div>
</div>
<div class="step">
<div class="step-number">2</div>
<div class="step-content">
<h3>Clone the Repository</h3>
<p>Get the latest version of OpenCoreMMO from GitHub:</p>
<div class="code-block">git clone https://github.com/OpenCoreMMO/OpenCoreMMO.git</div>
</div>
</div>
<div class="step">
<div class="step-number">3</div>
<div class="step-content">
<h3>Navigate to Source Directory</h3>
<p>Change to the src directory in the cloned repository:</p>
<div class="code-block">cd src</div>
</div>
</div>
<div class="step">
<div class="step-number">4</div>
<div class="step-content">
<h3>Launch the Server</h3>
<p>Start the OpenCoreMMO standalone server:</p>
<div class="code-block">dotnet run --project "Standalone"</div>
</div>
</div>
<div class="step">
<div class="step-number">5</div>
<div class="step-content">
<h3>Connect to Your Server</h3>
<p>Use the following connection details to connect to your self-hosted server for development:</p>
<div class="connection-details">
<h4>Server Connection Details</h4>
<div class="connection-info">
<div class="connection-item">
<h5>IP Address</h5>
<div class="value">127.0.0.1 <button class="copy-btn" onclick="copyToClipboard('127.0.0.1', this)">Copy</button></div>
</div>
<div class="connection-item">
<h5>Port</h5>
<div class="value">7171 <button class="copy-btn" onclick="copyToClipboard('7171', this)">Copy</button></div>
</div>
<div class="connection-item">
<h5>Account Name</h5>
<div class="value">1 <button class="copy-btn" onclick="copyToClipboard('1', this)">Copy</button></div>
</div>
<div class="connection-item">
<h5>Password</h5>
<div class="value">1 <button class="copy-btn" onclick="copyToClipboard('1', this)">Copy</button></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Community Section -->
<section class="community" id="community">
<div class="container">
<div class="section-title">
<h2>Join Our Community</h2>
<p>Connect with developers building with OpenCoreMMO</p>
</div>
<div class="community-links">
<a href="https://discord.gg/Kazq9z2" class="community-card" target="_blank">
<div class="community-icon">
<i class="fab fa-discord"></i>
</div>
<h3>Discord</h3>
<p>Real-time chat with the community and developers</p>
</a>
<a href="https://github.com/OpenCoreMMO/OpenCoreMMO/discussions" class="community-card" target="_blank">
<div class="community-icon github-icon">
<i class="fab fa-github"></i>
</div>
<h3>GitHub Discussions</h3>
<p>Feature requests, bug reports, and development discussions</p>
</a>
<a href="https://www.reddit.com/r/opencoremmo" class="community-card" target="_blank">
<div class="community-icon reddit-icon">
<i class="fab fa-reddit"></i>
</div>
<h3>Reddit</h3>
<p>Community news, updates, and project showcases</p>
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-logo">
<img src="https://avatars.githubusercontent.com/u/193319675?s=400&u=7a7fcc1649846debe978bd36e16b1743c6c363e8&v=4" alt="OpenCoreMMO Logo" class="footer-logo-img">
<span>OpenCoreMMO</span>
</div>
<div class="footer-links">
<a href="https://github.com/OpenCoreMMO/OpenCoreMMO" target="_blank">GitHub</a>
<a href="https://opencoremmo.gitbook.io/ocm/" target="_blank">Documentation</a>
<a href="https://github.com/OpenCoreMMO/OpenCoreMMO?tab=GPL-3.0-1-ov-file#readme" target="_blank">License</a>
</div>
</div>
<div class="copyright">
<p>© 2025 OpenCoreMMO Project. Released under the GPL-3.0 License.</p>
</div>
</div>
</footer>
<script src="js/script.js"></script>
</body>
</html>