Outpost: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
<div style="max-width:420px; margin:0 auto;"> | <div style="max-width:420px; margin:0 auto;"> | ||
< | <select id="outpostSelect" style="width:100%; padding:8px;"> | ||
<option value="">Select Outpost</option> | |||
<option value="meyers">Meyer's Market</option> | |||
" | </select> | ||
<div id="outpostInfo" style="margin-top:15px;"></div> | |||
</div> | </div> | ||
<script> | |||
document.getElementById("outpostSelect").addEventListener("change", function() { | |||
const info = document.getElementById("outpostInfo"); | |||
if (this.value === "meyers") { | |||
info.innerHTML = ` | |||
<b>Location:</b> 5766, -6575<br> | |||
<b>Recommended Level:</b> 1<br><br> | |||
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> | |||
<b>What's For Sale:</b> | |||
`; | |||
} else { | |||
info.innerHTML = ""; | |||
} | |||
}); | |||
</script> | |||
Revision as of 22:30, 21 April 2026
<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>