Reset Password
Existing players used to logging in with their character name and moo password must signup for a website account.
- Vanashis 28m
- JMo 3s All death is certain.
- Woeful 2h
- NightHollow 45m
- Veleth 40s Vampires don't sparkle.
- zxq 37m
- Sivartas 1h 2025, the year of curve balls.
j Fengshui 28m
- Cword 15m
- Diamond 5m Everything is everything.
a Mench 17m Doing a bit of everything.
- Jengris 1h
- Emily 2s I lost myself, in the dark charade.
And 23 more hiding and/or disguised
Connect to Sindome @ moo.sindome.org:5555 or just Play Now

Web Client disconnect confirmation
Are you sure you want to leave this page?

I would love to see a disconnect confirmation prompt before the web client exits. I've accidentally closed the window or hit back or reload more than enough times for it to be annoying and I lose those precious logs. You should be able to put the following function in the var onUnloadHandler = function() area of the client.js before the emit @quit line:

var confirmOnPageExit = function (e)

{

// If we haven't been passed the event get the window.event

e = e

Apparently the boards don't like xss... https://pastebin.com/LKWZr9XH
Actually, I lied, you'd probably have to add a new beforeUnloadHandler and add a new winJQ.before("unload", beforeUnloadHandler) since beforeUnload and onUnload are different things. At least I'm pretty sure from my limited JS skills.