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.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==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")
}