| .gitignore | ||
| APBingoWeb.html | ||
| README.md | ||
APBingo Web
This repository contains the APBingo webpage implementation.
It is designed to send checks to the Archipelago server and has been updated for archipelago.js v2.0.4.
🎯 Usage
1. Running the Bingo Board
- Download
APBingoWeb.html - You can provide configuration via URL parameters or by editing the HTML directly.
2. Configuration Options
✅ URL Parameters (recommended for OBS or to avoid prompts)
You can pass server configuration directly in the URL:
APBingoWeb.html?server=archipelago.gg:38281&username=Player1&password=
server→ Archipelago server address and port (e.g.,archipelago.gg:38281)username→ Your chosen player namepassword→ Leave empty if no password is requiredblind→ Hide all check hints, even if it was generated with hints
This method is especially useful when embedding the page in OBS or when you want to skip interactive prompts.
✅ Editing the HTML File
Alternatively, you can hardcode your configuration inside the HTML file:
<script type="module">
let server = undefined; // Line 40
let password = undefined; // Line 41
let username = undefined; // Line 42
</script>
Replace the undefined values with your desired settings.
For example:
<script type="module">
let server = "archipelago.gg:38281";
let password = "";
let username = "Player1";
</script>
📦 Repository Location
The main repository has been moved from GitHub to:
👉 https://git.moyskleytech.com/ObsidianMakerDevelopment/APBingoWeb-OBS
Online
You can also just use the following links:
Ask user info via popups: https://rawgit.moyskleytech.com/ObsidianMakerDevelopment/APBingoWeb-OBS/APBingoWeb.html
Pass user info via text https://rawgit.moyskleytech.com/ObsidianMakerDevelopment/APBingoWeb-OBS/APBingoWeb.html?server=archipelago.gg:38281&username=Player1&password=
Pass user info via text and setting it in blind mode to only show the box name not the hint https://rawgit.moyskleytech.com/ObsidianMakerDevelopment/APBingoWeb-OBS/APBingoWeb.html?server=archipelago.gg:38281&username=Player1&password=&blind=blind