Existing players used to logging in with their character name and moo password must signup for a website account.
- spungkbubble 41s
- SmokePotion 36s Right or wrong, I'm getting high.
- AdamBlue9000 4m Rolling 526d6 damage against both of us.
- Hivemind 49s
- Ociex 19m Brownies for the win.
- Sulfurado 12m
a Mench 3h Doing a bit of everything.
- Pladdicus 18m uh
- Rillem 6m Make it personal.
- Ameliorative 32s
- Fay 2h
- zxq 48m Tools: https://ansicolortool.neocities.org
- Sivartas 4h
And 21 more hiding and/or disguised
Connect to Sindome @ moo.sindome.org:5555 or just Play Now

Legacy Webclient Log Styling Fix
For those that want to update your legacy logs

Okay, so the problem with the logs is that we've updated the production styles and the legacy logs are broken as a result. I can't fully fix this because of the way logs were taken for years, without just… leaving the webclient styles as they were, which I can't do because there were things that were broken there. I can however, provide an alternate stylesheet that should fix the problem.

You'll have to update your logs manually (or using a script) to get these working the way you want. Sorry about that, it's annoying I know.

FIND AND REPLACE (MANUAL)

Open your log file, the first line or two will have a single entry that points to http://play.sindome.org/css/client.css

Change /css/ to /legacy/ which should give you text that looks like http://play.sindome.org/legacy/client.css and save the file. That should fix the styles for your log. Do this for any logs you want.

For those with a lot of logs… consider a more automated solution.

GNU SED (COMMAND LINE)

If you are command line capable and running MAC or LINUX, you can run sed with something like this:


sed -i -e 's#css/client.css#legacy/client.css#g' buffer.111620202055.html

CHATGPT (get the AI to write a script for you)

If you want to have something automated, you could copy (yes copy, in case something breaks) your logs into a new directory, and then pull up ChatGPT. Tell it your operating system, that you have a directory full of .html files that contain /css/client.css and you want to update that text to /legacy/client.css for all the files in a directory. Ask it to write you a script that will do that for you, and see if you can run it. Happy to help debug issues in this thread if people have them.

If you download Notepad++ you can drag your logs folder into it, then do CTRL+F, go to 'Find in Files', put the old link in the first box & the new one in the second, then press 'Replace in Files'. It will have a popup asking if you really want to do it, press 'OK' and it will start going through each file and save the change.