您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Help MPP bot.
- // ==UserScript==
- // @name Help Bot
- // @namespace https://greasyfork.org/
- // @version 0.1
- // @description Help MPP bot.
- // @author ʄɛռɨx
- // @include *://multiplayerpiano.net/*
- // @include *://mppclone.com/*
- // @icon http://imageshack.com/a/img923/4396/i1Wmrm.png
- // @grant none
- // @license GPL
- // ==/UserScript==
- var adminarray = [];
- MPP.client.on("a", function(msg) {
- var asgr = msg.a.split(' ');
- var cmd = asgr[0];if (cmd == "/help") {
- MPP.chat.send("Commands are: /help /name /id /color.")
- }
- if (cmd == "/name") {
- MPP.chat.send("Your name is: " + msg.p.name)
- }
- if (cmd == "/color") {
- MPP.chat.send("Your color is: " + msg.p.color);
- }
- if (cmd == "/id") {
- MPP.chat.send("Your id is: " + msg.p.id)
- }}
- )