Skip to content

Commit

Permalink
idle plugin: add infernal tool animation IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
utsukami authored and Adam- committed Dec 20, 2017
1 parent 728df2b commit e4730b9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions runelite-api/src/main/java/net/runelite/api/AnimationID.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public final class AnimationID
public static final int WOODCUTTING_ADAMANT = 869;
public static final int WOODCUTTING_RUNE = 867;
public static final int WOODCUTTING_DRAGON = 2846;
public static final int WOODCUTTING_INFERNAL = 0; // unknown - placeholder
public static final int WOODCUTTING_INFERNAL = 2117;
public static final int CONSUMING = 829; // consuming consumables
public static final int FIREMAKING = 733;
public static final int COOKING_FIRE = 897;
Expand Down Expand Up @@ -81,7 +81,7 @@ public final class AnimationID
public static final int MINING_ADAMANT_PICKAXE = 628;
public static final int MINING_RUNE_PICKAXE = 624;
public static final int MINING_DRAGON_PICKAXE = 7139;
public static final int MINING_INFERNAL_PICKAXE = 0; //placeholder, unknown
public static final int MINING_INFERNAL_PICKAXE = 4482;
public static final int MINING_MOTHERLODE_BRONZE = 6753;
public static final int MINING_MOTHERLODE_IRON = 6754;
public static final int MINING_MOTHERLODE_STEEL = 6755;
Expand All @@ -90,7 +90,7 @@ public final class AnimationID
public static final int MINING_MOTHERLODE_ADAMANT = 6756;
public static final int MINING_MOTHERLODE_RUNE = 6752;
public static final int MINING_MOTHERLODE_DRAGON = 6758;
public static final int MINING_MOTHERLODE_INFERNAL = 0; // placeholder, unknown
public static final int MINING_MOTHERLODE_INFERNAL = 4481;
public static final int HERBLORE_POTIONMAKING = 363; //used for both herb and secondary
public static final int MAGIC_CHARGING_ORBS = 726;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ public void onAnimationChanged(AnimationChanged event)
case WOODCUTTING_ADAMANT:
case WOODCUTTING_RUNE:
case WOODCUTTING_DRAGON:
case WOODCUTTING_INFERNAL:
/* Cooking(Fire, Range) */
case COOKING_FIRE:
case COOKING_RANGE:
Expand Down Expand Up @@ -150,6 +151,7 @@ public void onAnimationChanged(AnimationChanged event)
case MINING_ADAMANT_PICKAXE:
case MINING_RUNE_PICKAXE:
case MINING_DRAGON_PICKAXE:
case MINING_INFERNAL_PICKAXE:
/* Mining(Motherlode) */
case MINING_MOTHERLODE_BRONZE:
case MINING_MOTHERLODE_IRON:
Expand All @@ -159,6 +161,7 @@ public void onAnimationChanged(AnimationChanged event)
case MINING_MOTHERLODE_ADAMANT:
case MINING_MOTHERLODE_RUNE:
case MINING_MOTHERLODE_DRAGON:
case MINING_MOTHERLODE_INFERNAL:
/* Herblore */
case HERBLORE_POTIONMAKING:
/* Magic */
Expand Down

0 comments on commit e4730b9

Please sign in to comment.