mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-16 01:21:20 -04:00
16 lines
401 B
JavaScript
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.' });
|
|
},
|
|
};
|