aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/util/skyblock/ScreenIdentification.kt
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2025-09-17 23:22:32 +0200
committerLinnea Gräf <nea@nea.moe>2025-09-17 23:22:32 +0200
commit171fa38ddc65de7c37356c12f3cafc584bbca801 (patch)
tree207d0bb3303e391b276329729294f0d5e901bb0c /src/main/kotlin/util/skyblock/ScreenIdentification.kt
parent2b02a861a6f9a39c766dd4be18f30abefa2d9aec (diff)
downloadFirmament-171fa38ddc65de7c37356c12f3cafc584bbca801.tar.gz
Firmament-171fa38ddc65de7c37356c12f3cafc584bbca801.tar.bz2
Firmament-171fa38ddc65de7c37356c12f3cafc584bbca801.zip
feat: add skyblock ids to superpairs (+rng meter)
Diffstat (limited to 'src/main/kotlin/util/skyblock/ScreenIdentification.kt')
-rw-r--r--src/main/kotlin/util/skyblock/ScreenIdentification.kt8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/kotlin/util/skyblock/ScreenIdentification.kt b/src/main/kotlin/util/skyblock/ScreenIdentification.kt
index 7370a6f..ef64a30 100644
--- a/src/main/kotlin/util/skyblock/ScreenIdentification.kt
+++ b/src/main/kotlin/util/skyblock/ScreenIdentification.kt
@@ -19,3 +19,11 @@ fun Screen.isBazaarUi(): Boolean {
it.unformattedString == "To Bazaar"
})
}
+
+fun Screen.isSuperPairs(): Boolean {
+ return title.unformattedString.startsWith("Superpairs")
+}
+
+fun Screen.isExperimentationRngMeter(): Boolean {
+ return this.title.unformattedString.contains("Experimentation Table RNG")
+}