diff --git a/index.js b/index.js index 9b78f5f..c766f13 100644 --- a/index.js +++ b/index.js @@ -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 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"] ) } -}) - +}) \ No newline at end of file