Files
MultiRoombaRover/server/src/rewards/definitions/discordStalkerPing.js
T
2026-04-19 01:56:13 -04:00

16 lines
401 B
JavaScript

module.exports = {
id: 'discordStalkerPing',
name: 'Stalker Ping',
goal: 800,
async run(ctx) {
ctx.publishEvent({
source: 'buttonBoxReward',
type: 'buttonBox.discordStalkerPing',
payload: {
message: 'Pinged by button box masher!!',
},
});
ctx.sendAlert({ color: '#5865f2', title: 'Stalker Ping', message: 'Sent stalker ping to Discord.' });
},
};