Annoyed with settings reseting?

jacob404almost 11 years ago

I'm wondering if anyone else is annoyed by their settings being reset whenever they open mafia in a new window. (Voting log, mute music, etc)

I'm currently making something to save my settings across sessions and if other people are interested I'll share it here. Just let me know.

cubalmost 11 years ago
never resets for me
jacob404almost 11 years ago
Also just wanted to add that mute=true will mute all noise, not just music. So gunshots and whatnot. I think that includes pings though
jacob404almost 11 years ago
Oh nice. I just resorted to using a cookie editor, I was originally planning on using tampermonkey but I haven't used it for cookies before so I decided to be lazy. I will switch to using that now. Good stuff!
deleteddeletedalmost 11 years ago
// ==UserScript==
// @name In-game boxes
// @namespace Prevail
// @match https://epicmafia.com/*
// @version 1
// @grant none
// ==/UserScript==

document.cookie='acronym=true';
document.cookie='emoticons=true';
document.cookie='fullscreen=true';
document.cookie='mutemusic=true';
document.cookie='timestamp=true';
document.cookie='voting=true';
1