Jump to content

Outpost

From Once Human Guide
Revision as of 22:30, 21 April 2026 by Bones (talk | contribs)

<select id="outpostSelect" style="width:100%; padding:8px;">

 <option value="">Select Outpost</option>
 <option value="meyers">Meyer's Market</option>

</select>

<script> document.getElementById("outpostSelect").addEventListener("change", function() {

 const info = document.getElementById("outpostInfo");
 if (this.value === "meyers") {
   info.innerHTML = `
     Location: 5766, -6575
Recommended Level: 1

     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.

     What's For Sale:
   `;
 } else {
   info.innerHTML = "";
 }

}); </script>