Fascist Glory Device Explosions on Map for Planets.nu

Shows Fascist Glory Device Explosions on Map

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name          Fascist Glory Device Explosions on Map for Planets.nu
// @description   Shows Fascist Glory Device Explosions on Map
// @include       http://play.planets.nu/*
// @include 	  http://test.planets.nu/*
// @include 	  http://planets.nu/*
// @version 0.2
// @namespace https://greasyfork.org/users/2860
// ==/UserScript==
// Version History
// 0.1: Show Explosions on Map for Fascists with Glory Device Detonations. In Pink/Lavender
// 0.2: Add explosions on map if _you_ are hit with Glory Device Detonations
function wrapper () { // wrapper for injection

vgaPlanets.prototype.parseMessages = function () {
        if (!this.mymessages)
            this.mymessages = new Array();

        this.dipTurnCount = 0;
        for (var i = 0; i < this.mymessages.length; i++) {
            var message = this.mymessages[i];
            if (message.turn == vgap.settings.turn) {
                if (message.ownerid == vgap.player.id && message.messagetype != 0)
                    this.dipTurnCount++;
            }
            else
                break;
        }

        this.explosions = new Array();
        for (var i = 0; i < vgap.messages.length; i++) {
            var message = vgap.messages[i];
            if (message.messagetype == 10) {
                message.fatal = true;
                message.color = "rgba(255, 0, 255, 0.5)";
                this.explosions.push(message);
            }
            else if (message.messagetype == 16) {
                if (message.body.indexOf(message.headline + " has struck a mine!") >= 0 || message.body.indexOf(" has struck a WEB mine!<br/>") >= 0) {
                    if (message.body.indexOf("WEB") > 0)
                        message.color = "rgba(0,255,128,0.3)";
                    else
                        message.color = "rgba(255,255,0,0.3)";

                    var dam = message.body.substr(message.body.indexOf("Damage is at: ") + "Damage is at: ".length, 3);
                    if (dam.charAt(2) != " " && dam.charAt(2) != "<")
                        message.fatal = true;

                    this.explosions.push(message);
                }
            }
			else if (message.messagetype == 7)
			{
				if (message.body.indexOf("Glory") >=0) {
					message.color = "rgba(255,130,171,0.5)";
					message.fatal = true;
					this.explosions.push(message);
				}
			}
			else if (message.messagetype == 8)
			{
				if (message.body.indexOf("shockwave") >=0) {
					message.color = "rgba(255,130,171,0.5)";
					message.fatal = true;
					this.explosions.push(message);
				}
			}
        }
    };   
	
} //wrapper for injection




var script = document.createElement("script");
script.type = "application/javascript";
script.textContent = "(" + wrapper + ")();";

document.body.appendChild(script);