No description
Find a file
2026-03-31 15:03:07 -04:00
.gitignore New bingo board version updated 2025-11-12 09:40:20 -05:00
APBingoWeb.html remove name on complete 2026-03-31 15:03:07 -04:00
README.md Improved readme to show the direct online links to it 2025-12-02 11:16:52 -05:00

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

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 name
  • password → Leave empty if no password is required
  • blind → 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