This commit is contained in:
array-in-a-matrix 2023-01-04 00:45:41 -05:00
parent cc0d55f3f8
commit 7c2a404bc1
1 changed files with 5 additions and 12 deletions

View File

@ -5,19 +5,12 @@ const storage = new SimpleFsStorageProvider("storage.json");
const client = new MatrixClient(config.homeserver, config.token, storage);
AutojoinRoomsMixin.setupOnClient(client);
client.start().then(() => console.log(`Client has started!`));
client.start().then(() => console.log(`Client has entered the matrix!`));
// ? event listener
client.on("room.message", (roomId, event) => {
// ? check if the message's text is not empty and isn't sent by the bot itself
if (! event["content"] || event["sender"] === config.user) return;
// ? if message starts with the bot's <prefix + command> then execute the command
if (event["content"]["body"].toLowerCase().startsWith(config.prefix + "COMMAND")){
//
// TODO: START CODE HERE
//
if (event["content"]["body"].toLowerCase().includes("real")){
client.replyText(roomId, event, "real")
console.log("real => roomId: " + roomId + " author: " + event["sender"] + " message: " + event["content"]["body"] )
}
})
})