summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Davison <snapwilliam@gmail.com>2012-12-12 19:48:56 -0800
committerPatrick Davison <snapwilliam@gmail.com>2012-12-12 19:48:56 -0800
commit57629dfc60a7b377f9d7d0996a82583b496513f3 (patch)
tree6fc7db642005785fc1a62a22e838ace78023194b
parent3762d60441255f64dca71c2f82df4493eb8f91f2 (diff)
downloadpathery-57629dfc60a7b377f9d7d0996a82583b496513f3.tar.xz
FAQ update and cache adjustments
-rw-r--r--includes/header.php6
-rw-r--r--pages/faq.php34
2 files changed, 34 insertions, 6 deletions
diff --git a/includes/header.php b/includes/header.php
index cb5ae65..dca5bfd 100644
--- a/includes/header.php
+++ b/includes/header.php
@@ -9,7 +9,7 @@ function htmlHeader($css = array(), $title = 'Pathery', $desc = '', $scripts = a
<title><? echo $title; ?></title>
<link href="css/page.css" rel="stylesheet" type="text/css" />
- <link href="css/maps.css" rel="stylesheet" type="text/css" />
+ <link href="css/maps.css?v=121212" rel="stylesheet" type="text/css" />
<?php
foreach ($css as $c) {
echo " <link href=\"css/$c.css\" rel=\"stylesheet\" type=\"text/css\" />\n";
@@ -18,10 +18,10 @@ function htmlHeader($css = array(), $title = 'Pathery', $desc = '', $scripts = a
echo " <meta name='Description' content='$desc'>";
foreach ($scripts as $s)
- echo "<script src='js/$s.js?v=2'></script>";
+ echo "<script src='js/$s.js?v=121212'></script>";
?>
<script src="js/ajax.js" async="async"></script>
- <script src="js/mapspecs.js?v=112512"></script>
+ <script src="js/mapspecs.js?v=121212"></script>
<script>
(function(c,a){window.mixpanel=a;var b,d,h,e;b=c.createElement("script");b.type="text/javascript";b.async=!0;b.src=("https:"===c.location.protocol?"https:":"http:")+'//cdn.mxpnl.com/libs/mixpanel-2.1.min.js';d=c.getElementsByTagName("script")[0];d.parentNode.insertBefore(b,d);a._i=[];a.init=function(b,c,f){function d(a,b){var c=b.split(".");2==c.length&&(a=a[c[0]],b=c[1]);a[b]=function(){a.push([b].concat(Array.prototype.slice.call(arguments,0)))}}var g=a;"undefined"!==typeof f?
diff --git a/pages/faq.php b/pages/faq.php
index 2b42e23..0fccf4c 100644
--- a/pages/faq.php
+++ b/pages/faq.php
@@ -9,11 +9,18 @@ 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>
-</br >
-<h3>Can you explain how the pathing works?</h3>
-The pathing tries to find the best route possible.
+<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>
@@ -24,9 +31,30 @@ This means that the path will go UP as far as it can first &ndash; then right, d
<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();
?>