Skip to content

Commit

Permalink
event log fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jhaego committed Nov 14, 2024
1 parent 19eda59 commit 4c943b7
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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?*

Expand Down
12 changes: 7 additions & 5 deletions public/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
12 changes: 7 additions & 5 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
]
}

Expand Down

0 comments on commit 4c943b7

Please sign in to comment.