-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathguide.php
43 lines (26 loc) · 3.42 KB
/
guide.php
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
<?php
require_once($_SERVER['DOCUMENT_ROOT'] . DIRECTORY_SEPARATOR . 'header.php');
?>
<p>There are a ton of guides for editing Doom out on Youtube - here are a few resources to get you started!</p>
<p><a href="https://eev.ee/blog/2015/12/19/you-should-make-a-doom-level-part-1/">Eevee's guide (focuses on mapping with Slade3)</a></p>
<p><a href="https://www.doomworld.com/forum/topic/74073-vanilla-level-editing-lesson-1-preliminary-reconnaissance/">Linguica's guide (older but still good)</a></p>
<h3>You will need</h3>
<ul>
<li>Either a copy of <a href="https://www.gog.com/game/doom_ii">DOOM2.WAD</a> or <a href="https://freedoom.github.io/download.html">FREEDOOM2.WAD from Freedoom</a></li>
<li>A source port for running Doom levels (e.g. <a href="http://prboom.sourceforge.net/">PrBoom</a>, <a href="https://zdoom.org/index">GZDoom</a>)</li>
<li>A DOOM level editor (e.g. <a href="https://forum.zdoom.org/viewtopic.php?f=232&t=66745">Ultimate Doom Builder</a>, <a href="https://slade.mancubus.net/">Slade3</a>)</li>
</ul>
<h3>Setting up</h3>
<p>Here's a video describing how to set yourself up for creating Doom levels.</p>
<center><iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/V9Tmk9ic5_Q" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></center>
<h3>Making a map</h3>
<p>Doom maps can come in several flavours. You might want to stick to the map features possible using the original game, or experiment with the wide array of options added since then in the Universal Doom Map Format (UDMF). Mapping tutorials are all over the internet, but here are just a few of them:</p>
<center><iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/OqFhVGl4AJQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></center>
<center><iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/hAVtsA53XW0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></center>
<center><iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/zHUv06LNqu8" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></center>
<center><iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/7pUwu-695uI" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></center>
<h3>Submitting a WAD</h3>
<p>WADs can be submitted to RAMP through the <a href="./upload.php">uploader</a> on this site - you can use the PIN given to you after the initial upload to submit further edits to your WAD once it's been submitted. This video shows how to use the uploader.</p>
<center><iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/jXjhTf-2J3c" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></center>
<?php
require_once($_SERVER['DOCUMENT_ROOT'] . DIRECTORY_SEPARATOR . './footer.php');