Planets.nu send diplomats to all

Send diplomats to all players

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name          Planets.nu send diplomats to all
// @include       http://planets.nu/*
// @version 0.1
// @description   Send diplomats to all players
// @namespace https://greasyfork.org/users/2874
// ==/UserScript==
function wrapper () { // wrapper for injection

    console.log("sendDiplomats ver: 0.1");
    var old_dipMenu = vgapDashboard.prototype.dipMenu;
    vgapDashboard.prototype.dipMenu = function() {    
        old_dipMenu.apply(this, arguments);
        
        $("#SecondMenu").append("<li onclick='vgap.addOns.sendDiplomats();'>Send Diplomats to All</li>");
    };
    
    vgap.addOns.sendDiplomats = function() {
        for (var i = 0; i < vgap.players.length; i++) {
            var player = vgap.players[i];
            //console.log("Looking: " + player.id + " -> " + JSON.stringify(vgap.getRelation(player.id)));
            if (player.id != vgap.player.id && vgap.getRelation(player.id).relationto == 0) {
                //console.log("Setting: " + player.id);
        		vgap.dash.setRelation(player.id, 1);
            }
        }
    }
    
}
var script = document.createElement("script");
script.type = "application/javascript";
script.textContent = "(" + wrapper + ")();";

document.body.appendChild(script);