TWLan Forum

Full Version: Dorfübersicht
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Gibt es ein tool damit die dorfübersicht jede sekunde erneuert.
na, glaube nicht.
musst du f5 drücken, aber ich denke das ist keine arbeit Wink
man kann dies z.B. in Javascript schreiben Wink
einfach mal googeln Big Grin
If you're using Firefox/Opera/Chrome, you could make a userscript like this:
Code:
// ==UserScript==
// @name Autorefresher
// @include http://localhost/game.php*screen=overview&*
// @include http://localhost/game.php*screen=overview
// ==/UserScript==
setTimeout(function(){location.reload()}, 1000);
Save is as 'autorefresher.user.js' and drop the file in your browser.