SquadJS/plugins/auto-tk-warn/index.js
2020-09-02 13:20:44 +01:00

27 lines
753 B
JavaScript

import { LOG_PARSER_TEAMKILL } from 'squad-server/events/log-parser';
export default {
name: 'auto-tk-warn',
description:
'The `auto-tk-warn` plugin will automatically warn players in game to apologise for teamkills when they ' +
'teamkill another player.',
defaultEnabled: true,
optionsSpec: {
message: {
type: 'String',
required: false,
default: 'Please apologise for ALL TKs in ALL chat!',
description: 'The message to warn players with.'
}
},
init: async (server, options) => {
server.on(LOG_PARSER_TEAMKILL, (info) => {
// ignore suicides
if (info.attacker.steamID === info.victim.steamID) return;
server.rcon.warn(info.attacker.steamID, options.message);
});
}
};