From feed55096301b17afd130bc4c3b57b9cd02df8bc Mon Sep 17 00:00:00 2001 From: Lexer747 Date: Wed, 1 Jul 2026 01:02:06 +0100 Subject: [PATCH 1/2] bloodmoon rises fixes --- runelite-plugin.properties | 2 +- src/main/java/com/attacktimer/AnimationData.java | 1 + .../java/com/attacktimer/AttackTimerMetronomePlugin.java | 2 ++ src/main/java/com/attacktimer/WeaponType.java | 7 ++++++- 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/runelite-plugin.properties b/runelite-plugin.properties index cb36a22..0b67c6c 100644 --- a/runelite-plugin.properties +++ b/runelite-plugin.properties @@ -1,7 +1,7 @@ displayName=AttackTimer author=ngraves95,Lexer747 build=standard -version=1.2.4 +version=1.2.5 description=A plugin to countdown until your next attack tags=pvm,timer,attack,combat,weapon plugins=com.attacktimer.AttackTimerMetronomePlugin \ No newline at end of file diff --git a/src/main/java/com/attacktimer/AnimationData.java b/src/main/java/com/attacktimer/AnimationData.java index c1788e9..b7bb984 100644 --- a/src/main/java/com/attacktimer/AnimationData.java +++ b/src/main/java/com/attacktimer/AnimationData.java @@ -129,6 +129,7 @@ public enum AnimationData MELEE_RED_KERIS_SPEC(9544, AttackStyle.MELEE, true), // https://oldschool.runescape.wiki/w/Keris_partisan_of_corruption MELEE_SALAMANDER(5247, AttackStyle.MELEE), // https://oldschool.runescape.wiki/w/Salamander MELEE_INFERNAL_TECPATL(12342, AttackStyle.MELEE), // https://oldschool.runescape.wiki/w/Infernal_tecpatl + MELEE_HALLOWED_FLAIL(14244, AttackStyle.MELEE), // https://oldschool.runescape.wiki/w/Hallowed_flail // RANGED RANGED_CHINCHOMPA(7618, AttackStyle.RANGED), diff --git a/src/main/java/com/attacktimer/AttackTimerMetronomePlugin.java b/src/main/java/com/attacktimer/AttackTimerMetronomePlugin.java index 2cdd402..081c6c2 100644 --- a/src/main/java/com/attacktimer/AttackTimerMetronomePlugin.java +++ b/src/main/java/com/attacktimer/AttackTimerMetronomePlugin.java @@ -151,6 +151,7 @@ public enum AttackState private static final int VENATOR_BOW_WEAPON_ID = 27610; private static final int BLACK_GEM_KERIS_ID = 30891; // https://oldschool.runescape.wiki/w/Keris_partisan_of_amascut private static final int DRAGON_CROSSBOW_LMS_ID = 33460; // https://oldschool.runescape.wiki/w/Dragon_crossbow_(Last_Man_Standing) + private static final int SUNSPEAR_ID = 33722; // https://oldschool.runescape.wiki/w/Sunspear // Add other weapons here if in the Runelite dev shell this prints a different value to it's actual speed: // @@ -160,6 +161,7 @@ public enum AttackState new ImmutableMap.Builder() .put(BLACK_GEM_KERIS_ID, 4) .put(DRAGON_CROSSBOW_LMS_ID, 6) + .put(SUNSPEAR_ID, 5) .build(); // These animations are the ones which exceed the duration of their attack cooldown diff --git a/src/main/java/com/attacktimer/WeaponType.java b/src/main/java/com/attacktimer/WeaponType.java index d76eb3e..b6b0230 100644 --- a/src/main/java/com/attacktimer/WeaponType.java +++ b/src/main/java/com/attacktimer/WeaponType.java @@ -89,7 +89,12 @@ public enum WeaponType BULWARK(CRUSH, CRUSH, null, CRUSH), POWERED_WAND(CRUSH, null, null, NONE), PARTISAN(MAGIC, MAGIC, null, MAGIC), - PARTISAN_2(STAB, STAB, CRUSH, STAB); + PARTISAN_2(STAB, STAB, CRUSH, STAB), // 30 + PLACE_HOLDER_0(null, null, null), // 31 + PLACE_HOLDER_1(null, null, null), // 32 + PLACE_HOLDER_2(null, null, null), // 33 + PLACE_HOLDER_3(null, null, null), // 34 + FLAIL(SLASH, SLASH, null, SLASH); // 35 private static final Map WEAPON_TYPES; From beb4d793b17c2fb511b03f90483a1eaf4dfefee7 Mon Sep 17 00:00:00 2001 From: Lexer747 Date: Wed, 1 Jul 2026 01:03:42 +0100 Subject: [PATCH 2/2] readme --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index fd6593b..24c1edc 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,12 @@ Ticks until next attack may be enabled over your player's head. ## Updates +## 1.2.5 + +* Blood moon rises support (Hallowed Flail, Sunspear) +* Dragon crossbow in LMS +* Venator Bow Kit + ## 1.2 Overlay improvements!