-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
77 lines (76 loc) · 2.9 KB
/
index.html
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
---
layout: default
title: Home
---
<div class="page-header">
<h2>Welcome!</h2>
</div>
<div class="row">
<div class="col-lg-8">
<h4>What is Atlas?</h4>
<p>
Atlas Game Manager is a Minecraft server modification for <a href="https://spigotmc.org">Spigot</a> that powers multiplayer, objective-based game modes within Minecraft. Much like the <a href="http://www.forgehub.com/">Forge</a> game mode of the popular video game franchise, <a href="https://www.halowaypoint.com">Halo</a>, one can create their own game modes through modifying the actual layout and design of the world, spawn points, team colors, game rules, weapons, tools, objectives and more. Though unlike in Halo Forge, Minecraft is designed around building and design, which enables Atlas map developers to create completely unique maps not based around a pre-existing map. Atlas is also an ever-evolving platform that is driven by the community and the developers behind it.
</p>
<br>
<h4>How can I use this website?</h4>
<p>
This website documents how to create your own maps for the Atlas plugin. Each map has two components:
</p> <ol>
<li>
Minecraft world containing
<code>level.dat</code>
and the
<code>regions</code>
folder.
</li>
<li>
The XML map configuration file,
<code>map.xml</code>
. This defines the elements of the map such as spawn points, team colors, names, and more.
</li>
</ol> <p>
This website primarily focuses on the latter, but a tutorial and guidelines for creating an Atlas map world can be
<a href="#">found too</a>.
We also do not provide instruction on how extensible markup language (XML) files are written, instead you can look
<a href="http://www.xmlnews.org/docs/xml-basics.html">here</a>
for a basic introduction. We recommend you use your favorite application that helps you to write XML files. The following programs
work on most operating systems and help to spot errors and inconsistencies in the code you write:
</p>
<table class="table table-striped">
<tbody>
<tr>
<td>
<a href="https://atom.io">Atom</a>
</td>
<td>
Free & open-source, by Github.
</td>
</tr>
<tr>
<td>
<a href="https://www.sublimetext.com">Sublime Text</a>
</td>
<td>
$70, free download for evaluation of the product.
</td>
</tr>
<tr>
<td>
<a href="http://limetext.org">Lime Text</a>
</td>
<td>
Free & open-source,
</td>
</tr>
<tr>
<td>
<a href="http://brackets.io">Brackets</a>
</td>
<td>
Free & open-source, by Adobe.
</td>
</tr>
</tbody>
</table>
</div>
</div>