Compare commits
No commits in common. "6da93efb1076e4ba2fc6b5da894738520d3f2d55" and "6b9b67eb3f9e856a0831ba8153f087b12d85cf13" have entirely different histories.
6da93efb10
...
6b9b67eb3f
2 changed files with 1 additions and 16 deletions
12
README.md
12
README.md
|
@ -1,13 +1,3 @@
|
|||
# t00-multiuser
|
||||
|
||||
A UserScript Client / TypeScript Server for exploring angusnicneven.com with friends!
|
||||
|
||||
## How to install
|
||||
Install a userscript manager such as [Tampermonkey](https://www.tampermonkey.net/) (prefered) or [Greasemonkey](https://www.greasespot.net/) (untested).
|
||||
|
||||
Once you've done that click [this link](https://git.eusv.net/tgpholly/t00-multiuser/raw/branch/master/client/Terminal-00-Multiuser.user.js) and you should get a page asking if you want to install it. Click install, head to [Terminal 00](https://angusnicneven.com) and have fun!
|
||||
|
||||
## Usage
|
||||
The userscript adds a button to the top right of the screen labeled **"MultiUser Menu"**. In here you can set your username and Connect to / Disconnect from the server.
|
||||
|
||||
You will not be connected to the server until you set a username.
|
||||
A UserScript Client / TypeScript Server for exploring angusnicneven.com with friends!
|
|
@ -349,11 +349,6 @@ if (!window.TE_ACTIVE) {
|
|||
if (localStorage["t00mp_username"] !== "") {
|
||||
const disconnectButton = document.createElement("button");
|
||||
disconnectButton.innerText = "Disconnect";
|
||||
disconnectButton.onclick = () => {
|
||||
localStorage["t00mp_username"] = "";
|
||||
bg.remove();
|
||||
window.location.href = window.location.href;
|
||||
}
|
||||
}
|
||||
const doNotButton = document.createElement("button");
|
||||
doNotButton.innerText = "Close";
|
||||
|
|
Loading…
Reference in a new issue