-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding Variables and LocalChat Event
- Loading branch information
Jacob Fear
committed
Nov 22, 2023
1 parent
3d37ca6
commit 26a2f14
Showing
4 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* eslint-disable no-unused-vars */ | ||
const { permlevel, | ||
} = require('../modules/functions.js'); | ||
const config = require('../config.js'); | ||
const nmv = require('@caspertech/node-metaverse'); | ||
const { MessageEmbed, WebhookClient } = require('discord.js'); | ||
// The MESSAGE event runs anytime a message is received | ||
// Note that due to the binding of client to every event, every event | ||
// goes `client, other, args` when this function is run. | ||
|
||
const { UUID } = nmv.UUID; | ||
module.exports = async (client, ChatEvent) => { | ||
const SLbot = client.container.SLbot; | ||
const currentBot = process.env.SL_FIRSTNAME + ' ' + process.env.SL_LASTNAME; | ||
|
||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters