|
|
| Line 1: |
Line 1: |
| <div style="max-width:420px; margin:0 auto;"> | | [https://ohwikiguide.com Return to Front Page] |
| | <br> |
| | |
| | <div style="text-align: center; font-size: 150%;"> |
| | '''Outposts''' |
| | </div> |
|
| |
|
| <select id="outpostSelect" style="width:100%; padding:8px;"> | | <br><br> |
| <option value="">Select Outpost</option>
| |
| <option value="meyers">Meyer's Market</option>
| |
| </select>
| |
|
| |
|
| <div id="outpostInfo" style="margin-top:15px;"></div> | | <div style="max-width:420px; margin:0 auto;"> |
|
| |
|
| | <!-- TABS --> |
| | <div class="mw-tab-buttons"> |
| | <div class="mw-tab-btn" data-tab="slot1">Manibus</div> |
| | <div class="mw-tab-btn" data-tab="slot2">Way of Winter</div> |
| </div> | | </div> |
|
| |
|
| <script> | | <!-- MANIBUS --> |
| document.getElementById("outpostSelect").addEventListener("change", function() {
| | <div id="slot1" class="mw-tab-content"> |
| const info = document.getElementById("outpostInfo");
| | Manibus Content Goes Here |
| | </div> |
|
| |
|
| if (this.value === "meyers") {
| | <!-- WAY OF WINTER --> |
| info.innerHTML = `
| | <div id="slot2" class="mw-tab-content"> |
| <b>Location:</b> 5766, -6575<br>
| | Way of Winter Content Goes Here |
| <b>Recommended Level:</b> 1<br><br>
| | </div> |
|
| |
|
| Survivors in the Broken Delta region stumbled upon this haven in the heart of the river, a sanctuary from the Starfall's ravaging contamination. Here, they've erected shelters, cultivated crops on the rich riverbank soil for self-sufficiency, and ventured into nearby factory zones to gather materials for crafting Equip, fortifying their Stronghold against invasions from the surrounding Deviants.<br><br>
| | </div> |
| | |
| <b>What's For Sale:</b>
| |
| `;
| |
| } else {
| |
| info.innerHTML = "";
| |
| }
| |
| });
| |
| </script> | |