Outpost: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| (40 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
'' | <html> | ||
<a href="https://ohwikiguide.com" style="display:inline-block;padding:8px 14px;background:#0ea5e9;color:#001018;font-weight:700;font-size:13px;border-radius:6px;text-decoration:none;">Back to Main Page</a> | |||
<br> | |||
<br> | |||
Updated: 25 May 2026 | |||
<br> | |||
<br> | |||
<div style="max-width:420px;margin:0 auto;"> | |||
<div style="display:flex;width:100%;background:#0b0f14;border-radius:10px;padding:4px;gap:4px;box-sizing:border-box;margin-bottom:8px;"> | |||
<div class="cattab" data-cat="manibus" style="flex:1;text-align:center;padding:10px 0;font-weight:600;color:#001018;background:#0ea5e9;border-radius:6px;cursor:pointer;">Manibus</div> | |||
<div class="cattab" data-cat="wow" style="flex:1;text-align:center;padding:10px 0;font-weight:600;color:#cfd6df;background:#11161c;border-radius:6px;cursor:pointer;">Way of Winter</div> | |||
</div> | |||
<div id="manibus" class="catpanel" style="display:block;"> | |||
<select id="manibusSel" style="width:100%;margin-top:10px;padding:10px;background:#11161c;color:#e6edf3;border:1px solid #1f2a35;border-radius:8px;font-size:14px;box-sizing:border-box;"> | |||
<option value="">Select Option</option> | |||
<option value="sep_73">73 Source Extraction Point</option> | |||
<option value="sunshine_farm">Sunshine Farm</option> | |||
</select> | |||
<div id="manibusOut" style="display:none;margin-top:10px;background:#0d1319;border:1px solid #1f2a35;border-radius:10px;padding:12px;"></div> | |||
</div> | |||
<div id="wow" class="catpanel" style="display:none;"> | |||
<select id="wowSel" style="width:100%;margin-top:10px;padding:10px;background:#11161c;color:#e6edf3;border:1px solid #1f2a35;border-radius:8px;font-size:14px;box-sizing:border-box;"> | |||
<option value="">Select Option</option> | |||
<option value="ashenton">Ashenton</option> | |||
<option value="fire_throat_fortress">Fire Throat Fortress</option> | |||
<option value="mousseville">Mousseville</option> | |||
<option value="mousseville_sweet_factory">Mousseville Sweet Factory</option> | |||
<option value="sunshroud_cave">Sunshroud Cave</option> | |||
<option value="wish_land_east">Wish Land East</option> | |||
</select> | |||
<div id="wowOut" style="display:none;margin-top:10px;background:#0d1319;border:1px solid #1f2a35;border-radius:10px;padding:12px;"></div> | |||
</div> | |||
</div> | |||
<script> | |||
var manibusData = { | |||
sep_73:["73 Source Extraction Point",["Location: 2866, -1713","Zone: Red Sands","Mystical Crate:","Confirmed Facility Drops:","- Hydropower Generator","- Fusion Pod","- Furnace"]], | |||
sunshine_farm:["Sunshine Farm",["Location: 2835, -326","Zone: Blackheart Region","Mystical Crate: 2867, -283 (On top of structure)","Confirmed Facility Drops:","- Refinery Facility","- Furnace","- Assault Rifle Turret","- Hydropower Generator","- Solar Generator","- Biomass Generator","- Weapon Rack","- Tech Research Workbench"]] | |||
}; | |||
var wowData = { | |||
ashenton:["Ashenton",["Location: -6328, 4567","Zone: Ember Strand","Mystical Crate:","Confirmed Facility Drops:","- Custom Disassembly Bench -6513, 4838","- Stardust Furnace -6590, 4817","- Hybrid Furnace -6590, 4817"]], | |||
fire_throat_fortress:["Fire Throat Fortress",["Location: -5115, 4452","Zone: Ember Strand","Mystical Crate:","Confirmed Facility Drops:","- Advanced Supplies Workbench","- Disassembly Bench","- Improved Large Biomass Generator","- Intermediate Stove","- Large Biomass Generator","- Large Solar Generator","- Large Synthesis Machine","- Private Storage Crate","- Small Solar Generator","- Special Storage Crate","- Tech Research Workbench","- Weapon Storage Crate"]], | |||
mousseville:["Mousseville",["Location: 5295, 4558","Zone: Onyx Tundra","Mystical Crate: 5300, 4676 (On top of cake)","Weapon Crate:","5198, 4592","5227, 4695","5256, 4755","5283, 4792 (Must break iceberg as it's inside the Spider Cave)","Confirmed Facility Drops:"]], | |||
mousseville_sweet_factory:["Mousseville Sweet Factory",["Location: 4210, 4959","Zone: Onyx Tundra","Mystical Crate: 4187, 4999 (Must break iceberg inside factory room and go downstairs)","Weapon Crate:","4288, 5059","Confirmed Facility Drops:"]], | |||
sunshroud_cave:["Sunshroud Cave",["Location: -5902, 7278","Zone: Ember Strand","Mystical Crate:","Confirmed Facility Drops:","- Advanced Stove","- Custom Disassembly Bench","- Disassembly Bench","- Electric Furnace","- Electric Heater","- Improved Large Biomass Generator","- Large Biomass Generator","- Large Refinery Facility","- Small Biomass Generator","- Small Refinery Facility","- Small Storage Crate","- Special Storage Crate","- Stardust Stove"]], | |||
wish_land_east:["Wish Land East",["Location: 2517, 5758","Zone: Onyx Tundra","Mystical Crate: 2520, 5762 (On top of Castle facing front entrance)","Confirmed Facility Drops:","- Deviation Storage Crate","- Large Storage Crate","- Primary Stove","- Primary Supplies Workbench","- Private Storage Crate","- Securement Pod","- Table"]] | |||
}; | |||
function bind(selId, outId, data) { | |||
var sel = document.getElementById(selId); | |||
var out = document.getElementById(outId); | |||
sel.onchange = function() { | |||
var v = sel.value; | |||
if (!v) { out.style.display = "none"; return; } | |||
var row = data[v]; | |||
var html = '<div style="font-weight:700;margin-bottom:8px;color:#e6edf3;">' + row[0] + '</div>'; | |||
for (var i = 0; i < row[1].length; i++) { | |||
var border = i === 0 ? '' : 'border-top:1px solid #1a222b;'; | |||
html += '<div style="font-size:13px;color:#9fb0c3;padding:4px 0;' + border + '">' + row[1][i] + '</div>'; | |||
} | |||
html += '<div style="font-size:11px;color:#6b7a8c;font-style:italic;padding-top:8px;margin-top:4px;">If you notice anything wrong or find something missing, please use the Discord link on top and open a ticket so we can fix it ASAP.</div>'; | |||
html += '<div style="font-size:11px;color:#6b7a8c;font-style:italic;padding-top:4px;">Any facility named here has been seen here but that doesn\'t mean it will always be there when you visit.</div>'; | |||
out.innerHTML = html; | |||
out.style.display = "block"; | |||
}; | |||
} | |||
bind("manibusSel","manibusOut",manibusData); | |||
bind("wowSel","wowOut",wowData); | |||
var catTabs = document.querySelectorAll(".cattab"); | |||
for (var i = 0; i < catTabs.length; i++) { | |||
catTabs[i].onclick = function(e) { | |||
var target = e.currentTarget.getAttribute("data-cat"); | |||
var allCatTabs = document.querySelectorAll(".cattab"); | |||
for (var j = 0; j < allCatTabs.length; j++) { | |||
allCatTabs[j].style.background = "#11161c"; | |||
allCatTabs[j].style.color = "#cfd6df"; | |||
} | |||
e.currentTarget.style.background = "#0ea5e9"; | |||
e.currentTarget.style.color = "#001018"; | |||
var catPanels = document.querySelectorAll(".catpanel"); | |||
for (var k = 0; k < catPanels.length; k++) catPanels[k].style.display = "none"; | |||
document.getElementById(target).style.display = "block"; | |||
}; | |||
} | |||
</script> | |||
</html> | |||
Latest revision as of 00:41, 26 May 2026
Back to Main Page
Updated: 25 May 2026
Manibus
Way of Winter