summaryrefslogtreecommitdiffstats
path: root/pages/faq.php
blob: 0fccf4ca5ceac70133aeefef799c3e1a2f96cc73 (plain)
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
<?php
htmlHeader(array(), 'FAQ', 'How does the pathing work?');
?>

<body>
<?php
topbar($Links);
?>

<div class="wrapper">


Your question not here? Ask me via the <a href='feedback'>Feedback Page</a>.

<h2>Questions and Answers</h2>
<ul>
	<li><a href='#pathing'>How does the pathing work? / How does it choose which way to go?</a></li>
	<li><a href='#multipath'>How does Multi-path work? (Two paths at once)</a></li>
</ul>

<a name='pathing'>&nbsp;</a>
<h3>How does the pathing work?</h3>
<p>The pathing tries to find the best route possible.
In open areas there's lots of identical paths for it to take;
To choose which path it will go it follows these priorities:
<b> UP, RIGHT, DOWN, LEFT.</b>
This means that the path will go UP as far as it can first &ndash; then right, down, left.
<br />If the path is going to the TOP RIGHT from the BOTTOM LEFT, the path will go UP all the way to the top, then RIGHT.
<br />If the path is going to the BOTTOM LEFT, from the TOP RIGHT, the path will go all the way DOWN and then LEFT.
<br />TOP LEFT, from BOTTOM RIGHT, UP, then LEFT.
<br />So, BOTTOM LEFT, from TOP RIGHT? If you answer "DOWN then LEFT" you are correct!
<br />If you answered "uhhmm.. what's up with the directions in caps?" then you get a bonus point!
<br />Remember, teleports are traps and do not effect the path choice.
</p>

<hr width='60%' />

<a name='multipath'>&nbsp;</a>
<h3>How does Multi-path work? (Two paths at once)</h3>
<div class='grid_td_start' style='display: inline-block'></div>
<div class='grid_td_startB' style='display: inline-block'></div>

<p>The Green start location on a map starts the Green Path, or 'Path 1'.

<br />The Green Path noted by the green in the arrow may pass over Green Allow blocks:
<div class='grid_td_rockxpath2' style='display: inline-block'></div>
But they can't cross Red blocks:
<div class='grid_td_rockxpath1' style='display: inline-block'></div>
<br />
Likewise, the Red Path noted by red in the arrow may pass over Red Allow blocks:
<div class='grid_td_rockxpath1' style='display: inline-block'></div>
<br />
12-12-12: - I'm going to update this answer in like 8 hours with some examples... So; if you're reading this. Hi!

</div>


<?php
htmlFooter();
?>