This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| import threading | |
| import queue | |
| import re | |
| from dataclasses import dataclass | |
| from typing import List, Optional | |
| import time | |
| import os | |
| from urllib.parse import urlparse |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as c2 from "@abextm/cache2"; | |
| import * as context from "viewer/context"; | |
| interface Teleport { | |
| teleportID: number // Associated with the varbit POH_NEXUS_TELE_# | |
| teleportName: string | |
| } | |
| interface NexusTeleport extends Teleport { | |
| alternativeTeleports?: Teleport[] |
OlderNewer