import export setup
This commit is contained in:
parent
8053eb44d9
commit
1666ba3b6b
|
@ -1,3 +1,4 @@
|
||||||
|
export function ttvalerts() {
|
||||||
// TTV Re-Active
|
// TTV Re-Active
|
||||||
// ==================================
|
// ==================================
|
||||||
// TO-DO: Add Follower API
|
// TO-DO: Add Follower API
|
||||||
|
@ -192,3 +193,4 @@ client.on("whisper", (from, userstate, message, self) => {
|
||||||
console.log('DM | From:'.green, from, userstate, 'MSG:'.green, message);
|
console.log('DM | From:'.green, from, userstate, 'MSG:'.green, message);
|
||||||
client.say(channel, `/me [+1] Inbox | Received a new SEXT message from: @`+ from +`!`);
|
client.say(channel, `/me [+1] Inbox | Received a new SEXT message from: @`+ from +`!`);
|
||||||
});
|
});
|
||||||
|
}
|
|
@ -24,6 +24,8 @@ client.connect();
|
||||||
|
|
||||||
import { rnguser } from "./rng.js";
|
import { rnguser } from "./rng.js";
|
||||||
rnguser();
|
rnguser();
|
||||||
|
import { ttvalerts } from "./alerts.js";
|
||||||
|
ttvalerts();
|
||||||
|
|
||||||
client.on('message', (channel, tags, message, self) => {
|
client.on('message', (channel, tags, message, self) => {
|
||||||
if(self) return;
|
if(self) return;
|
||||||
|
|
Loading…
Reference in New Issue