Greasy Fork is available in English.

EE:DB 500 Error Redirect

Works around a bug in HabboUK's EE:DB code to redirect to the log in page if signed out.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name        EE:DB 500 Error Redirect
// @description Works around a bug in HabboUK's EE:DB code to redirect to the log in page if signed out.
// @namespace   NDYC
// @homepageURL https://github.com/noahc500
// @match       https://habbouk.com/eedb
// @version     1.1
// @author      NDYC
// @license    GPL-3.0
// ==/UserScript==
if (document.getElementsByTagName('div')[2].innerText == "Server Error") {
  document.getElementsByTagName('div')[2].innerHTML = "Restricted Page<br/>Redirecting to Login"
  window.location.replace("https://habbouk.com/login")
}