From 4c943b7670dddc2fc1a1b739b5f0030739873e95 Mon Sep 17 00:00:00 2001 From: Jhaego Date: Thu, 14 Nov 2024 23:08:26 +0100 Subject: [PATCH] event log fix --- README.md | 4 ++-- public/main.js | 12 +++++++----- src/index.tsx | 12 +++++++----- 3 files changed, 16 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 65b734b..fc939b5 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This is me playing around with the [original Better AoD](https://runeapps.org/forums/viewtopic.php?id=1324) Alt1 plugin by JamieS1211. -Compared to the original, this version properly tracks number of kills and average kill time. +Compared to the original, this version *should* track number of kills and average kill time. Hopefully with time I can add additional features. ## Installation @@ -17,7 +17,7 @@ Ensure the in-game Interface Scaling is set to 100%. Disable Interface Transpare *Having issues detecting things?* -This plugin requires you to have gamechat in either the "on" or "filtered" settings and the chatbox to be scrolled completely to the bottom. The plugin also reads each line separately so issues may occur if your chat box is so small that certain messages that are scanned for split on multiple lines, i.e. **try making your chatbox wider**. Please ensure your **font size is 12 or larger** (14 is best) as font 10 has significant detection issues. +This plugin requires you to have gamechat in either the "on" or "filtered" settings and the chatbox to be scrolled completely to the bottom. The plugin also reads each line separately so issues may occur if your chat box is so small that certain messages that are scanned for split on multiple lines, i.e. *try making your chatbox wider*. Please ensure your *font size is 12 or larger* (14 is best) as font 10 has significant detection issues. *Double reading things?* diff --git a/public/main.js b/public/main.js index 4676c18..c08f9d3 100644 --- a/public/main.js +++ b/public/main.js @@ -42040,16 +42040,18 @@ const createNewReader = () => { const reader = new (alt1_chatbox__WEBPACK_IMPORTED_MODULE_14___default())(); reader.readargs = { colors: [ - (0,alt1_base__WEBPACK_IMPORTED_MODULE_15__.mixColor)(255, 160, 0), // Orange practice mode + (0,alt1_base__WEBPACK_IMPORTED_MODULE_15__.mixColor)(127, 169, 255), // Timestamp blue + (0,alt1_base__WEBPACK_IMPORTED_MODULE_15__.mixColor)(44, 183, 20), // Completion time green OLD (0,alt1_base__WEBPACK_IMPORTED_MODULE_15__.mixColor)(45, 186, 20), // Completion time green - (0,alt1_base__WEBPACK_IMPORTED_MODULE_15__.mixColor)(235, 47, 47), // Nex P3 spec text NEW 16/7/24 - (0,alt1_base__WEBPACK_IMPORTED_MODULE_15__.mixColor)(153, 255, 153), // "Nex:" green + (0,alt1_base__WEBPACK_IMPORTED_MODULE_15__.mixColor)(255, 160, 0), // Practice mode orange (0,alt1_base__WEBPACK_IMPORTED_MODULE_15__.mixColor)(155, 48, 255), // "Nex:" purple + (0,alt1_base__WEBPACK_IMPORTED_MODULE_15__.mixColor)(153, 255, 153), // "Nex:" green + (0,alt1_base__WEBPACK_IMPORTED_MODULE_15__.mixColor)(225, 35, 35), // "Nex has marked you ..." OLD + (0,alt1_base__WEBPACK_IMPORTED_MODULE_15__.mixColor)(235, 47, 47), // "Nex has marked you ..." (0,alt1_base__WEBPACK_IMPORTED_MODULE_15__.mixColor)(255, 0, 255), // Umbra purple (0,alt1_base__WEBPACK_IMPORTED_MODULE_15__.mixColor)(0, 255, 255), // Glacies blue (0,alt1_base__WEBPACK_IMPORTED_MODULE_15__.mixColor)(255, 0, 0), // Cruor red - (0,alt1_base__WEBPACK_IMPORTED_MODULE_15__.mixColor)(255, 255, 255), // Fumus white - (0,alt1_base__WEBPACK_IMPORTED_MODULE_15__.mixColor)(127, 169, 255) // Clock blue + (0,alt1_base__WEBPACK_IMPORTED_MODULE_15__.mixColor)(255, 255, 255) // Fumus white ] }; return reader; diff --git a/src/index.tsx b/src/index.tsx index 7e9f5f1..8da5ad9 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -49,16 +49,18 @@ const createNewReader = () => { reader.readargs = { colors: [ - mixColor(255, 160, 0), // Orange practice mode + mixColor(127, 169, 255), // Timestamp blue + mixColor(44, 183, 20), // Completion time green OLD mixColor(45, 186, 20), // Completion time green - mixColor(235, 47, 47), // Nex P3 spec text NEW 16/7/24 - mixColor(153, 255, 153), // "Nex:" green + mixColor(255, 160, 0), // Practice mode orange mixColor(155, 48, 255), // "Nex:" purple + mixColor(153, 255, 153), // "Nex:" green + mixColor(225, 35, 35), // "Nex has marked you ..." OLD + mixColor(235, 47, 47), // "Nex has marked you ..." mixColor(255, 0, 255), // Umbra purple mixColor(0, 255, 255), // Glacies blue mixColor(255, 0, 0), // Cruor red - mixColor(255, 255, 255), // Fumus white - mixColor(127, 169, 255) // Clock blue + mixColor(255, 255, 255) // Fumus white ] }