la-cosa-nostra
Version:
A Mafia bot designed to run in Discord - beware the traitors and the lies!
83 lines (57 loc) • 2.21 kB
JavaScript
// Register heal
var rs = require("../../../rolesystem/rolesystem.js");
module.exports = function (game, message, params) {
var actions = game.actions;
var config = game.config;
// Run checks, etc
if (params[0] === undefined) {
message.channel.send(":x: Wrong syntax! Please use `" + config["command-prefix"] + "shoot <alphabet/username/nobody>` instead!");
return null;
};
var to = game.getPlayerMatch(params[0]);
var from = game.getPlayerById(message.author.id);
actions.delete(x => x.from === from.identifier && x.identifier === "mailman/mail");
if (to.score < 0.7 || params[0].toLowerCase() === "nobody") {
message.channel.send(":mailbox_with_mail: You have decided not to send anyone a message tonight.");
return null;
};
to = to.player;
if (!to.isAlive()) {
message.channel.send(":x: You cannot send a message to a dead player!" + rs.misc.sarcasm(true));
return null;
};
if (to.id === message.author.id) {
message.channel.send(":x: You cannot send a message to yourself!" + rs.misc.sarcasm(true));
return null;
} else {
if (params.length < 2) {
message.channel.send(":x: You cannot send an empty message!");
return null;
};
var send = params.splice(1, Infinity).join(" ");
if (/`/g.test(send)) {
message.channel.send(":x: Please do not use code formatting in the anonymous message!");
return null;
};
send = send.trim().replace(/^\s+|\s+$/g, "");
if (send.length > 1200) {
message.channel.send(":x: The message cannot exceed 1,200 characters!");
return null;
};
game.addAction("mailman/mail", ["cycle"], {
name: "Mailman-mail",
expiry: 1,
from: message.author.id,
to: to.id,
message: send
});
var mention = to.getDisplayName();
};
message.channel.send(":mailbox_with_mail: You have decided to send **" + mention + "** the following message:\n```fix\n" + send + "```");
};
module.exports.ALLOW_NONSPECIFIC = false;
module.exports.PRIVATE_ONLY = true;
module.exports.DEAD_CANNOT_USE = true;
module.exports.ALIVE_CANNOT_USE = false;
module.exports.DISALLOW_DAY = true;
module.exports.DISALLOW_NIGHT = false;