// ==UserScript== // @name TW Redirect on login // @namespace http://home.deds.nl/~lekensteyn/p/ // @copyright 2009, Lekensteyn (http://www.tribetool.nl/) // @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html // @version 13072009-3 // @description Redirects to a certain page when logging in. // @include http://nl*.tribalwars.nl/*&intro* // ==/UserScript== var urls = { 'vacation': '{game}&screen=settings&mode=vacation', 'masscoin': '{game}&screen=snob&mode=coin', 'name': 'url' //etcetera. //Notice the missing comma above }; var setting = 'vacation'; var vv = location.search.match(/t=\d+/); vv = vv ? vv[0] : ''; location.href = urls[setting].replace(/\{game\}/g, 'http://'+location.host+'/game.php?'+vv);