This is broken under v0.3.1 - you need to update the pages it runs on:
Try this for the header.
|
Source code
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// ==UserScript==
// @name Member Town Resource
// @namespace ikariamLibrary
// @description Ikariam: Alliance Member Town Luxury Good (v2)
// @require http://script.betterday.co.uk/modules/game.js
// @require http://script.betterday.co.uk/modules/string.js
// @include http://s*.ikariam.*/index.php?*view=embassy*
// @include http://s*.ikariam.*/index.php?*view=diplomacyAdvisor*&watch=4*
// @include http://s*.ikariam.*/index.php?*view=diplomacyAdvisorAlly*
// @exclude http://support*.ikariam.*/*
// ==/UserScript==
/* author: Nick Sewell ( contact: script@betterday.co.uk ) */
/* if you have any ideas, comments or problems please mail them to me */
var game = new game();
if ( game.view == "embassy" ||
(game.view == "diplomacyAdvisor" && game.url.getArgument("watch") == 4) ||
game.view == "diplomacyAdvisorAlly") {
|
Also, this script is broken by the Ikariam Favorites Targets script.