@deafwave/osrs-botmaker-types 0.7.11 → 0.7.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/dist/src/rollup/ComponentID.d.ts +0 -1
  2. package/dist/src/rollup/ComponentID.js +17 -18
  3. package/dist/src/rollup/ItemID.d.ts +130 -22
  4. package/dist/src/rollup/ItemID.js +130 -22
  5. package/dist/src/rollup/NpcID.d.ts +32 -19
  6. package/dist/src/rollup/NpcID.js +32 -19
  7. package/dist/src/rollup/NullItemID.d.ts +34 -83
  8. package/dist/src/rollup/NullItemID.js +34 -83
  9. package/dist/src/rollup/NullNpcID.d.ts +5 -13
  10. package/dist/src/rollup/NullNpcID.js +5 -13
  11. package/dist/src/rollup/NullObjectID.d.ts +45 -11
  12. package/dist/src/rollup/NullObjectID.js +45 -11
  13. package/dist/src/rollup/ObjectID.d.ts +60 -50
  14. package/dist/src/rollup/ObjectID.js +60 -50
  15. package/dist/src/rollup/gameval/AnimationID.d.ts +17 -0
  16. package/dist/src/rollup/gameval/AnimationID.js +17 -0
  17. package/dist/src/rollup/gameval/DBTableID.d.ts +206 -0
  18. package/dist/src/rollup/gameval/DBTableID.js +226 -20
  19. package/dist/src/rollup/gameval/InterfaceID.d.ts +4 -1
  20. package/dist/src/rollup/gameval/InterfaceID.js +4 -1
  21. package/dist/src/rollup/gameval/InventoryID.d.ts +3 -0
  22. package/dist/src/rollup/gameval/InventoryID.js +3 -0
  23. package/dist/src/rollup/gameval/ItemID.d.ts +109 -0
  24. package/dist/src/rollup/gameval/ItemID.js +109 -0
  25. package/dist/src/rollup/gameval/NpcID.d.ts +37 -32
  26. package/dist/src/rollup/gameval/NpcID.js +37 -32
  27. package/dist/src/rollup/gameval/ObjectID1.d.ts +84 -40
  28. package/dist/src/rollup/gameval/ObjectID1.js +84 -40
  29. package/dist/src/rollup/gameval/SpotanimID.d.ts +10 -0
  30. package/dist/src/rollup/gameval/SpotanimID.js +10 -0
  31. package/dist/src/rollup/gameval/SpriteID.js +7 -7
  32. package/dist/src/rollup/gameval/VarClientID.d.ts +1 -0
  33. package/dist/src/rollup/gameval/VarClientID.js +1 -0
  34. package/dist/src/rollup/gameval/VarPlayerID.d.ts +10 -0
  35. package/dist/src/rollup/gameval/VarPlayerID.js +10 -0
  36. package/dist/src/rollup/gameval/VarbitID.d.ts +69 -0
  37. package/dist/src/rollup/gameval/VarbitID.js +69 -0
  38. package/dist/src/types/java/index.d.ts +4 -0
  39. package/dist/src/types/java/swing/AbstractButton.d.ts +24 -0
  40. package/dist/src/types/java/swing/ButtonGroup.d.ts +16 -0
  41. package/dist/src/types/java/swing/Component.d.ts +10 -0
  42. package/dist/src/types/java/swing/JCheckBox.d.ts +1 -0
  43. package/dist/src/types/java/swing/JList.d.ts +2 -0
  44. package/dist/src/types/java/swing/JRadioButton.d.ts +21 -0
  45. package/dist/src/types/java/swing/JScrollPane.d.ts +6 -6
  46. package/dist/src/types/java/util/function/Predicate.d.ts +39 -0
  47. package/dist/src/types/runelite/net/runelite/api/ItemID.d.ts +130 -22
  48. package/dist/src/types/runelite/net/runelite/api/NpcID.d.ts +32 -19
  49. package/dist/src/types/runelite/net/runelite/api/NullItemID.d.ts +34 -83
  50. package/dist/src/types/runelite/net/runelite/api/NullNpcID.d.ts +5 -13
  51. package/dist/src/types/runelite/net/runelite/api/NullObjectID.d.ts +45 -11
  52. package/dist/src/types/runelite/net/runelite/api/ObjectID.d.ts +60 -50
  53. package/dist/src/types/runelite/net/runelite/api/gameval/AnimationID.d.ts +17 -0
  54. package/dist/src/types/runelite/net/runelite/api/gameval/DBTableID.d.ts +233 -20
  55. package/dist/src/types/runelite/net/runelite/api/gameval/InterfaceID.d.ts +4 -1
  56. package/dist/src/types/runelite/net/runelite/api/gameval/InventoryID.d.ts +3 -0
  57. package/dist/src/types/runelite/net/runelite/api/gameval/ItemID.d.ts +142 -83
  58. package/dist/src/types/runelite/net/runelite/api/gameval/NpcID.d.ts +37 -32
  59. package/dist/src/types/runelite/net/runelite/api/gameval/ObjectID1.d.ts +84 -40
  60. package/dist/src/types/runelite/net/runelite/api/gameval/SpotanimID.d.ts +10 -0
  61. package/dist/src/types/runelite/net/runelite/api/gameval/SpriteID.d.ts +115 -0
  62. package/dist/src/types/runelite/net/runelite/api/gameval/VarClientID.d.ts +1 -0
  63. package/dist/src/types/runelite/net/runelite/api/gameval/VarPlayerID.d.ts +10 -0
  64. package/dist/src/types/runelite/net/runelite/api/gameval/VarbitID.d.ts +69 -0
  65. package/dist/src/types/runelite/net/runelite/api/widgets/ComponentID.d.ts +17 -18
  66. package/package.json +1 -1
@@ -13838,6 +13838,7 @@ declare const _default: {
13838
13838
  SETTINGS_IRONMAN_CARGO_WARNING_TEMP: number;
13839
13839
  SAILING_CREW_GHOST_JENKINS_VISIBILITY_CONTROL: number;
13840
13840
  SETTINGS_CARGO_HOLD_PRIVACY: number;
13841
+ SETTINGS_NEW_MENU_INTERFACE: number;
13841
13842
  BOAT_REPAIR_COST_WARNING_DISMISSED: number;
13842
13843
  XMAS_25_MAIN: number;
13843
13844
  XMAS_25_NPC_QUEUE: number;
@@ -13866,5 +13867,73 @@ declare const _default: {
13866
13867
  XMAS25_FOOD_SIDE_2: number;
13867
13868
  XMAS25_FOOD_SIDE_3: number;
13868
13869
  SAILING_UNEXPECTED_INPUT_LOGGED: number;
13870
+ SETTINGS_NEW_MENU_TRANSPARENT_INTERFACE_DISABLED: number;
13871
+ SETTINGS_RUNEPOUCH_LOADOUT_NAMES_DISABLED: number;
13872
+ SETTINGS_FAIRYRING_MOBILE_KEYBOARD_AUTOOPEN_DISABLED: number;
13873
+ MY2ARM_STRONGHOLD_TELE_TOGGLE: number;
13874
+ SAILING_SIDEPANEL_BOAT_CRYSTALHELM_RESISTANCE: number;
13875
+ DRAGONSLAYER_MET_SAWMILL: number;
13876
+ DRAGONSLAYER_PLANKS_MADE: number;
13877
+ ERNESTHANDIN_COMPLETE: number;
13878
+ DEADMAN_FINALE_TELEPORT_BH_COMPLETE: number;
13879
+ DEADMAN_FINALE_TELEPORT_COLOSSEUM_COMPLETE: number;
13880
+ DEADMAN_FINALE_TEAM: number;
13881
+ DEADMAN_QUEST_LAMP_TIER_5: number;
13882
+ DEADMAN_QUEST_LAMP_TIER_6: number;
13883
+ DEADMAN_QUEST_LAMP_TIER_7: number;
13884
+ DEADMAN_QUEST_LAMP_TIER_8: number;
13885
+ DEADMAN_QUEST_LAMP_TIER_9: number;
13886
+ DEADMAN_QUEST_LAMP_TIER_10: number;
13887
+ DEADMAN_RUINOUS_PRAYERS_UNLOCK_CHECK: number;
13888
+ DEADMAN_2026_WEAPON_ORNAMENT_UNLOCKED: number;
13889
+ DEADMAN_2026_POH_ORNAMENT_UNLOCKED: number;
13890
+ DEADMAN_2026_TELEPORT_UNLOCKED: number;
13891
+ DEADMAN_2026_TUTORIAL_STEP: number;
13892
+ DEADMAN_2026_INITIAL_SETUP_DONE: number;
13893
+ DEADMAN_2026_TUTORIAL_END: number;
13894
+ DEADMAN_2026_TUTORIAL_TELEPORT_DEST: number;
13895
+ DEADMAN_SKULL_TAB: number;
13896
+ SIGIL_OF_AGILE_FORTUNE_STATE: number;
13897
+ SIGIL_OF_HOARDING_STATE: number;
13898
+ SIGIL_OF_DECEPTION_STATE: number;
13899
+ SIGIL_OF_LITHE_STATE: number;
13900
+ SIGIL_OF_THE_FOOD_MASTER_STATE: number;
13901
+ SIGIL_OF_THE_WELL_FED_STATE: number;
13902
+ SIGIL_OF_THE_POTION_MASTER_STATE: number;
13903
+ SIGIL_OF_THE_TREASURE_HUNTER_STATE: number;
13904
+ SIGIL_OF_THE_HUNTER_STATE: number;
13905
+ SIGIL_OF_THE_INFERNAL_CHEF_STATE: number;
13906
+ SIGIL_OF_NATURE_STATE: number;
13907
+ SIGIL_OF_FAITH_STATE: number;
13908
+ SIGIL_OF_DEVOTION_STATE: number;
13909
+ SIGIL_OF_THE_ALCHEMANIAC_STATE: number;
13910
+ SIGIL_OF_RESISTANCE_STATE: number;
13911
+ SIGIL_OF_DEFT_STRIKES_STATE: number;
13912
+ SIGIL_OF_THE_AUGMENTED_THRALL_STATE: number;
13913
+ SIGIL_OF_ONSLAUGHT_STATE: number;
13914
+ SIGIL_OF_RESTORATION_STATE: number;
13915
+ SIGIL_OF_TITANIUM_STATE: number;
13916
+ SIGIL_OF_METICULOUSNESS_STATE: number;
13917
+ SIGIL_OF_ENHANCED_HARVEST_STATE: number;
13918
+ SIGIL_OF_MOBILITY_STATE: number;
13919
+ SIGIL_OF_SLAUGHTER_STATE: number;
13920
+ SIGIL_OF_WOODCRAFT_STATE: number;
13921
+ SIGIL_OF_REMOTE_STORAGE_STATE: number;
13922
+ SIGIL_OF_CONCLUSION_STATE: number;
13923
+ SIGIL_OF_AUTOMATION_STATE: number;
13924
+ SIGIL_OF_ETERNAL_BELIEF_STATE: number;
13925
+ SIGIL_OF_EFFICIENCY_STATE: number;
13926
+ SIGIL_OF_REVOKED_LIMITATION_STATE: number;
13927
+ SIGIL_OF_ENHANCED_HARVEST_TOGGLE: number;
13928
+ SIGIL_OF_MOBILITY_TOGGLE: number;
13929
+ SIGIL_OF_SLAUGHTER_TOGGLE: number;
13930
+ SIGIL_OF_WOODCRAFT_TOGGLE: number;
13931
+ SIGIL_OF_REMOTE_STORAGE_TOGGLE: number;
13932
+ SIGIL_OF_DEVOTION_TOGGLE: number;
13933
+ SLAYER_UNLOCK_HELM_HOODED: number;
13934
+ BANK_HIDEDEPOSITCONTAINERS: number;
13935
+ BANK_POPUPTAB_OPEN: number;
13936
+ BANK_SETTING_FORGET_POPUP: number;
13937
+ DEADMAN_2026_GE_WIPE: number;
13869
13938
  };
13870
13939
  export default _default;
@@ -13839,6 +13839,7 @@ export default {
13839
13839
  SETTINGS_IRONMAN_CARGO_WARNING_TEMP: 19612,
13840
13840
  SAILING_CREW_GHOST_JENKINS_VISIBILITY_CONTROL: 19613,
13841
13841
  SETTINGS_CARGO_HOLD_PRIVACY: 19614,
13842
+ SETTINGS_NEW_MENU_INTERFACE: 19615,
13842
13843
  BOAT_REPAIR_COST_WARNING_DISMISSED: 19616,
13843
13844
  XMAS_25_MAIN: 19618,
13844
13845
  XMAS_25_NPC_QUEUE: 19619,
@@ -13867,4 +13868,72 @@ export default {
13867
13868
  XMAS25_FOOD_SIDE_2: 19642,
13868
13869
  XMAS25_FOOD_SIDE_3: 19643,
13869
13870
  SAILING_UNEXPECTED_INPUT_LOGGED: 19645,
13871
+ SETTINGS_NEW_MENU_TRANSPARENT_INTERFACE_DISABLED: 19646,
13872
+ SETTINGS_RUNEPOUCH_LOADOUT_NAMES_DISABLED: 19647,
13873
+ SETTINGS_FAIRYRING_MOBILE_KEYBOARD_AUTOOPEN_DISABLED: 19648,
13874
+ MY2ARM_STRONGHOLD_TELE_TOGGLE: 19649,
13875
+ SAILING_SIDEPANEL_BOAT_CRYSTALHELM_RESISTANCE: 19652,
13876
+ DRAGONSLAYER_MET_SAWMILL: 19653,
13877
+ DRAGONSLAYER_PLANKS_MADE: 19654,
13878
+ ERNESTHANDIN_COMPLETE: 19655,
13879
+ DEADMAN_FINALE_TELEPORT_BH_COMPLETE: 19656,
13880
+ DEADMAN_FINALE_TELEPORT_COLOSSEUM_COMPLETE: 19657,
13881
+ DEADMAN_FINALE_TEAM: 19658,
13882
+ DEADMAN_QUEST_LAMP_TIER_5: 19660,
13883
+ DEADMAN_QUEST_LAMP_TIER_6: 19661,
13884
+ DEADMAN_QUEST_LAMP_TIER_7: 19662,
13885
+ DEADMAN_QUEST_LAMP_TIER_8: 19663,
13886
+ DEADMAN_QUEST_LAMP_TIER_9: 19664,
13887
+ DEADMAN_QUEST_LAMP_TIER_10: 19665,
13888
+ DEADMAN_RUINOUS_PRAYERS_UNLOCK_CHECK: 19666,
13889
+ DEADMAN_2026_WEAPON_ORNAMENT_UNLOCKED: 19671,
13890
+ DEADMAN_2026_POH_ORNAMENT_UNLOCKED: 19672,
13891
+ DEADMAN_2026_TELEPORT_UNLOCKED: 19673,
13892
+ DEADMAN_2026_TUTORIAL_STEP: 19677,
13893
+ DEADMAN_2026_INITIAL_SETUP_DONE: 19678,
13894
+ DEADMAN_2026_TUTORIAL_END: 19679,
13895
+ DEADMAN_2026_TUTORIAL_TELEPORT_DEST: 19680,
13896
+ DEADMAN_SKULL_TAB: 19682,
13897
+ SIGIL_OF_AGILE_FORTUNE_STATE: 19683,
13898
+ SIGIL_OF_HOARDING_STATE: 19684,
13899
+ SIGIL_OF_DECEPTION_STATE: 19685,
13900
+ SIGIL_OF_LITHE_STATE: 19686,
13901
+ SIGIL_OF_THE_FOOD_MASTER_STATE: 19687,
13902
+ SIGIL_OF_THE_WELL_FED_STATE: 19688,
13903
+ SIGIL_OF_THE_POTION_MASTER_STATE: 19689,
13904
+ SIGIL_OF_THE_TREASURE_HUNTER_STATE: 19690,
13905
+ SIGIL_OF_THE_HUNTER_STATE: 19691,
13906
+ SIGIL_OF_THE_INFERNAL_CHEF_STATE: 19692,
13907
+ SIGIL_OF_NATURE_STATE: 19693,
13908
+ SIGIL_OF_FAITH_STATE: 19694,
13909
+ SIGIL_OF_DEVOTION_STATE: 19695,
13910
+ SIGIL_OF_THE_ALCHEMANIAC_STATE: 19696,
13911
+ SIGIL_OF_RESISTANCE_STATE: 19697,
13912
+ SIGIL_OF_DEFT_STRIKES_STATE: 19698,
13913
+ SIGIL_OF_THE_AUGMENTED_THRALL_STATE: 19699,
13914
+ SIGIL_OF_ONSLAUGHT_STATE: 19700,
13915
+ SIGIL_OF_RESTORATION_STATE: 19701,
13916
+ SIGIL_OF_TITANIUM_STATE: 19702,
13917
+ SIGIL_OF_METICULOUSNESS_STATE: 19703,
13918
+ SIGIL_OF_ENHANCED_HARVEST_STATE: 19704,
13919
+ SIGIL_OF_MOBILITY_STATE: 19705,
13920
+ SIGIL_OF_SLAUGHTER_STATE: 19706,
13921
+ SIGIL_OF_WOODCRAFT_STATE: 19707,
13922
+ SIGIL_OF_REMOTE_STORAGE_STATE: 19708,
13923
+ SIGIL_OF_CONCLUSION_STATE: 19709,
13924
+ SIGIL_OF_AUTOMATION_STATE: 19710,
13925
+ SIGIL_OF_ETERNAL_BELIEF_STATE: 19711,
13926
+ SIGIL_OF_EFFICIENCY_STATE: 19712,
13927
+ SIGIL_OF_REVOKED_LIMITATION_STATE: 19713,
13928
+ SIGIL_OF_ENHANCED_HARVEST_TOGGLE: 19714,
13929
+ SIGIL_OF_MOBILITY_TOGGLE: 19715,
13930
+ SIGIL_OF_SLAUGHTER_TOGGLE: 19716,
13931
+ SIGIL_OF_WOODCRAFT_TOGGLE: 19717,
13932
+ SIGIL_OF_REMOTE_STORAGE_TOGGLE: 19718,
13933
+ SIGIL_OF_DEVOTION_TOGGLE: 19719,
13934
+ SLAYER_UNLOCK_HELM_HOODED: 19720,
13935
+ BANK_HIDEDEPOSITCONTAINERS: 19721,
13936
+ BANK_POPUPTAB_OPEN: 19722,
13937
+ BANK_SETTING_FORGET_POPUP: 19723,
13938
+ DEADMAN_2026_GE_WIPE: 19724,
13870
13939
  };
@@ -33,6 +33,7 @@
33
33
  /// <reference path="./util/index.d.ts" />
34
34
  /// <reference path="./util/Collection.d.ts" />
35
35
  /// <reference path="./util/concurrent.d.ts" />
36
+ /// <reference path="./util/function/Predicate.d.ts" />
36
37
  /// <reference path="./io/FileWriter.d.ts" />
37
38
  /// <reference path="./swing/Border.d.ts" />
38
39
  /// <reference path="./swing/BorderFactory.d.ts" />
@@ -41,7 +42,10 @@
41
42
  /// <reference path="./swing/Component.d.ts" />
42
43
  /// <reference path="./swing/CustomPanel.d.ts" />
43
44
  /// <reference path="./swing/Icon.d.ts" />
45
+ /// <reference path="./swing/AbstractButton.d.ts" />
46
+ /// <reference path="./swing/ButtonGroup.d.ts" />
44
47
  /// <reference path="./swing/JButton.d.ts" />
48
+ /// <reference path="./swing/JRadioButton.d.ts" />
45
49
  /// <reference path="./swing/JToggleButton.d.ts" />
46
50
  /// <reference path="./swing/JCheckBox.d.ts" />
47
51
  /// <reference path="./swing/JComboBox.d.ts" />
@@ -0,0 +1,24 @@
1
+ declare namespace javax.swing {
2
+ export abstract class AbstractButton extends javax.swing.JComponent {
3
+ setText(text: string): void;
4
+ getText(): string;
5
+ setIcon(icon: Icon): void;
6
+ getIcon(): Icon | null;
7
+ setEnabled(enabled: boolean): void;
8
+ isEnabled(): boolean;
9
+ addActionListener(listener: (event: java.awt.event.ActionListener) => void): void;
10
+ removeActionListener(listener: (event: java.awt.event.ActionListener) => void): void;
11
+ setSelected(selected: boolean): void;
12
+ isSelected(): boolean;
13
+ setMnemonic(mnemonic: number): void;
14
+ getMnemonic(): number;
15
+ setToolTipText(text: string): void;
16
+ getToolTipText(): string;
17
+ setModel(model: javax.swing.ButtonModel): void;
18
+ getModel(): javax.swing.ButtonModel;
19
+ setActionCommand(cmd: string): void;
20
+ getActionCommand(): string;
21
+ }
22
+ }
23
+
24
+ type AbstractButton = javax.swing.AbstractButton;
@@ -0,0 +1,16 @@
1
+ declare namespace javax.swing {
2
+ export class ButtonGroup {
3
+ constructor();
4
+ add(button: javax.swing.AbstractButton): void;
5
+ remove(button: javax.swing.AbstractButton): void;
6
+ getSelection(): javax.swing.ButtonModel | null;
7
+ setSelection(model: javax.swing.ButtonModel | null): void;
8
+ clearSelection(): void;
9
+ getButtonCount(): number;
10
+ getElements(): java.util.Enumeration<javax.swing.AbstractButton>;
11
+ isSelected(model: javax.swing.ButtonModel): boolean;
12
+ }
13
+ }
14
+
15
+ type ButtonGroup = javax.swing.ButtonGroup;
16
+
@@ -17,5 +17,15 @@ declare namespace javax.swing {
17
17
  abstract paintChildren(g: java.awt.Graphics2D): void;
18
18
 
19
19
  abstract setPreferredSize(dimension: java.awt.Dimension): void;
20
+ abstract getPreferredSize(): java.awt.Dimension;
21
+ abstract setMinimumSize(dimension: java.awt.Dimension): void;
22
+ abstract getMinimumSize(): java.awt.Dimension;
23
+ abstract setMaximumSize(dimension: java.awt.Dimension): void;
24
+ abstract getMaximumSize(): java.awt.Dimension;
25
+ abstract setSize(width: number, height: number): void;
26
+ abstract setSize(dimension: java.awt.Dimension): void;
27
+ abstract getSize(): java.awt.Dimension;
28
+ abstract getWidth(): number;
29
+ abstract getHeight(): number;
20
30
  }
21
31
  }
@@ -12,6 +12,7 @@ declare namespace javax.swing {
12
12
  addFocusListener(listener: java.awt.event.FocusListener): void;
13
13
  removeFocusListener(listener: java.awt.event.FocusListener): void;
14
14
  setForeground(color: java.awt.Color): void;
15
+ setBackground(color: java.awt.Color): void;
15
16
  setFont(font: java.awt.Font): void;
16
17
  setToolTipText(text: string): void;
17
18
  }
@@ -5,6 +5,8 @@ declare namespace javax.swing {
5
5
  getSelectedValuesList(): string[];
6
6
  setSelectionMode(mode: number): void;
7
7
  getSelectionMode(): number;
8
+ getSelectedIndex(): number;
9
+ getSelectedIndices(): number[];
8
10
  setPreferredSize(size: java.awt.Dimension): void;
9
11
  setMinimumSize(dimension: java.awt.Dimension): void;
10
12
  setMaximumSize(dimension: java.awt.Dimension): void;
@@ -0,0 +1,21 @@
1
+ declare namespace javax.swing {
2
+ export class JRadioButton extends javax.swing.AbstractButton {
3
+ constructor(label: string, selected?: boolean);
4
+ getText(): string;
5
+ setText(text: string): void;
6
+ setSelected(selected: boolean): void;
7
+ isSelected(): boolean;
8
+ setEnabled(enabled: boolean): void;
9
+ isEnabled(): boolean;
10
+ addActionListener(listener: (event: java.awt.event.ActionListener) => void): void;
11
+ removeActionListener(listener: (event: java.awt.event.ActionListener) => void): void;
12
+ addFocusListener(listener: java.awt.event.FocusListener): void;
13
+ removeFocusListener(listener: java.awt.event.FocusListener): void;
14
+ setForeground(color: java.awt.Color): void;
15
+ setBackground(color: java.awt.Color): void;
16
+ setFont(font: java.awt.Font): void;
17
+ setToolTipText(text: string): void;
18
+ }
19
+ }
20
+
21
+ type JRadioButton = javax.swing.JRadioButton;
@@ -15,12 +15,12 @@ declare namespace javax.swing {
15
15
  }
16
16
 
17
17
  export class ScrollPaneConstants {
18
- static readonly VERTICAL_SCROLLBAR_AS_NEEDED: number;
19
- static readonly VERTICAL_SCROLLBAR_ALWAYS: number;
20
- static readonly VERTICAL_SCROLLBAR_NEVER: number;
21
- static readonly HORIZONTAL_SCROLLBAR_AS_NEEDED: number;
22
- static readonly HORIZONTAL_SCROLLBAR_ALWAYS: number;
23
- static readonly HORIZONTAL_SCROLLBAR_NEVER: number;
18
+ static readonly VERTICAL_SCROLLBAR_AS_NEEDED: number = 20;
19
+ static readonly VERTICAL_SCROLLBAR_NEVER: number = 21;
20
+ static readonly VERTICAL_SCROLLBAR_ALWAYS: number = 22;
21
+ static readonly HORIZONTAL_SCROLLBAR_AS_NEEDED: number = 30;
22
+ static readonly HORIZONTAL_SCROLLBAR_NEVER: number = 31;
23
+ static readonly HORIZONTAL_SCROLLBAR_ALWAYS: number = 32;
24
24
  }
25
25
  }
26
26
 
@@ -0,0 +1,39 @@
1
+ /**
2
+ * Represents a predicate (boolean-valued function) of one argument.
3
+ * This is a functional interface whose functional method is test(T).
4
+ */
5
+ declare namespace java.util.func_tion {
6
+ export interface Predicate<T> {
7
+ /**
8
+ * Evaluates this predicate on the given argument.
9
+ *
10
+ * @param t the input argument
11
+ * @returns true if the input argument matches the predicate, otherwise false
12
+ */
13
+ test(t: T): boolean;
14
+
15
+ /**
16
+ * Combines this predicate with another one using logical and.
17
+ *
18
+ * @param other a predicate that will be logically-ANDed with this predicate
19
+ * @returns a composed predicate that represents the short-circuiting logical AND of this predicate and the other
20
+ */
21
+ and(other: Predicate<T>): Predicate<T>;
22
+
23
+ /**
24
+ * Combines this predicate with another one using logical or.
25
+ *
26
+ * @param other a predicate that will be logically-ORed with this predicate
27
+ * @returns a composed predicate that represents the short-circuiting logical OR of this predicate and the other
28
+ */
29
+ or(other: Predicate<T>): Predicate<T>;
30
+
31
+ /**
32
+ * Returns a predicate that represents the logical negation of this predicate.
33
+ *
34
+ * @returns a predicate that represents the logical negation of this predicate
35
+ */
36
+ negate(): Predicate<T>;
37
+ }
38
+ }
39
+ type Predicate<T> = java.util.func_tion.Predicate<T>;
@@ -5609,10 +5609,10 @@ declare namespace net.runelite.api {
5609
5609
  static readonly BLACK_MASK_1 = 8919;
5610
5610
  static readonly BLACK_MASK = 8921;
5611
5611
  static readonly WITCHWOOD_ICON = 8923;
5612
- static readonly BANDANA_EYEPATCH = 8924;
5613
- static readonly BANDANA_EYEPATCH_8925 = 8925;
5614
- static readonly BANDANA_EYEPATCH_8926 = 8926;
5615
- static readonly BANDANA_EYEPATCH_8927 = 8927;
5612
+ static readonly BANDANA_EYEPATCH_WHITE = 8924;
5613
+ static readonly BANDANA_EYEPATCH_RED = 8925;
5614
+ static readonly BANDANA_EYEPATCH_BLUE = 8926;
5615
+ static readonly BANDANA_EYEPATCH_BROWN = 8927;
5616
5616
  static readonly HAT_EYEPATCH = 8928;
5617
5617
  static readonly CRABCLAW_HOOK = 8929;
5618
5618
  static readonly PIPE_SECTION = 8930;
@@ -13546,8 +13546,8 @@ declare namespace net.runelite.api {
13546
13546
  static readonly SIGIL_OF_AGILE_FORTUNE_28493 = 28493;
13547
13547
  static readonly SIGIL_OF_THE_FOOD_MASTER = 28495;
13548
13548
  static readonly SIGIL_OF_THE_FOOD_MASTER_28496 = 28496;
13549
- static readonly SIGIL_OF_THE_WELLFED = 28498;
13550
- static readonly SIGIL_OF_THE_WELLFED_28499 = 28499;
13549
+ static readonly SIGIL_OF_THE_WELL_FED = 28498;
13550
+ static readonly SIGIL_OF_THE_WELL_FED_28499 = 28499;
13551
13551
  static readonly SIGIL_OF_THE_INFERNAL_CHEF = 28501;
13552
13552
  static readonly SIGIL_OF_THE_INFERNAL_CHEF_28502 = 28502;
13553
13553
  static readonly SIGIL_OF_THE_INFERNAL_SMITH = 28504;
@@ -13576,10 +13576,10 @@ declare namespace net.runelite.api {
13576
13576
  static readonly CORRUPTED_SCYTHE_OF_VITUR_UNCHARGED = 28545;
13577
13577
  static readonly CORRUPTED_TUMEKENS_SHADOW = 28547;
13578
13578
  static readonly CORRUPTED_TUMEKENS_SHADOW_UNCHARGED = 28549;
13579
- static readonly QUEST_LAMP = 28551;
13580
- static readonly QUEST_LAMP_28552 = 28552;
13581
- static readonly QUEST_LAMP_28553 = 28553;
13582
- static readonly QUEST_LAMP_28554 = 28554;
13579
+ static readonly FREMENNIK_QUEST_LAMP = 28551;
13580
+ static readonly ELF_QUEST_LAMP = 28552;
13581
+ static readonly GNOME_QUEST_LAMP = 28553;
13582
+ static readonly MAHJARRAT_1_QUEST_LAMP = 28554;
13583
13583
  static readonly STARTER_BOW_28555 = 28555;
13584
13584
  static readonly STARTER_STAFF_28557 = 28557;
13585
13585
  static readonly STARTER_SWORD_28559 = 28559;
@@ -14119,22 +14119,22 @@ declare namespace net.runelite.api {
14119
14119
  static readonly SIGIL_OF_METICULOUSNESS_29649 = 29649;
14120
14120
  static readonly SIGIL_OF_REVOKED_LIMITATION = 29651;
14121
14121
  static readonly SIGIL_OF_REVOKED_LIMITATION_29652 = 29652;
14122
- static readonly SIGIL_OF_RAMPART = 29654;
14123
- static readonly SIGIL_OF_RAMPART_29655 = 29655;
14122
+ static readonly SIGIL_OF_THE_RAMPART = 29654;
14123
+ static readonly SIGIL_OF_THE_RAMPART_29655 = 29655;
14124
14124
  static readonly SIGIL_OF_DECEPTION = 29657;
14125
14125
  static readonly SIGIL_OF_DECEPTION_29658 = 29658;
14126
- static readonly SIGIL_OF_LITHE = 29660;
14127
- static readonly SIGIL_OF_LITHE_29661 = 29661;
14128
- static readonly SIGIL_OF_ADROIT = 29663;
14129
- static readonly SIGIL_OF_ADROIT_29664 = 29664;
14126
+ static readonly SIGIL_OF_LITHENESS = 29660;
14127
+ static readonly SIGIL_OF_LITHENESS_29661 = 29661;
14128
+ static readonly SIGIL_OF_THE_ADROIT = 29663;
14129
+ static readonly SIGIL_OF_THE_ADROIT_29664 = 29664;
14130
14130
  static readonly SIGIL_OF_ONSLAUGHT = 29666;
14131
14131
  static readonly SIGIL_OF_ONSLAUGHT_29667 = 29667;
14132
14132
  static readonly SIGIL_OF_RESTORATION = 29669;
14133
14133
  static readonly SIGIL_OF_RESTORATION_29670 = 29670;
14134
- static readonly SIGIL_OF_SWASHBUCKLER = 29672;
14135
- static readonly SIGIL_OF_SWASHBUCKLER_29673 = 29673;
14136
- static readonly SIGIL_OF_GUNSLINGER = 29675;
14137
- static readonly SIGIL_OF_GUNSLINGER_29676 = 29676;
14134
+ static readonly SIGIL_OF_THE_SWASHBUCKLER = 29672;
14135
+ static readonly SIGIL_OF_THE_SWASHBUCKLER_29673 = 29673;
14136
+ static readonly SIGIL_OF_THE_GUNSLINGER = 29675;
14137
+ static readonly SIGIL_OF_THE_GUNSLINGER_29676 = 29676;
14138
14138
  static readonly SIGIL_OF_ARCANE_SWIFTNESS = 29678;
14139
14139
  static readonly SIGIL_OF_ARCANE_SWIFTNESS_29679 = 29679;
14140
14140
  static readonly GUTHIXIAN_TEMPLE_TELEPORT = 29684;
@@ -15544,7 +15544,7 @@ declare namespace net.runelite.api {
15544
15544
  static readonly SMALL_KEY_THE_PANDEMONIUM = 32411;
15545
15545
  static readonly SMALL_KEY_THE_ONYX_CREST = 32412;
15546
15546
  static readonly SMALL_KEY_TEAR_OF_THE_SOUL = 32413;
15547
- static readonly SMALL_KEY_YNSDAIL = 32414;
15547
+ static readonly SMALL_KEY_YNYSDAIL = 32414;
15548
15548
  static readonly SMALL_KEY_MINOTAURS_REST = 32415;
15549
15549
  static readonly SMALL_KEY_BUCCANEERS_HAVEN = 32416;
15550
15550
  static readonly SMALL_KEY_ISLE_OF_BONES = 32417;
@@ -16015,10 +16015,118 @@ declare namespace net.runelite.api {
16015
16015
  static readonly STEEL_NAILS_32923 = 32923;
16016
16016
  static readonly CRATE_OF_ARROWTIPS_32924 = 32924;
16017
16017
  static readonly CRATE_OF_CLOTHES_32925 = 32925;
16018
- static readonly SERVING_PLATTER = 32926;
16019
16018
  static readonly LOVLEY_JUBBLY_BIB = 32928;
16020
16019
  static readonly BEER_BELLY_SWEATER = 32930;
16021
16020
  static readonly JAD_JUMPER = 32932;
16022
16021
  static readonly CHRISTMAS_DINNER = 32934;
16022
+ static readonly CRATE_OF_FURS_32936 = 32936;
16023
+ static readonly CRATE_OF_FISH_32937 = 32937;
16024
+ static readonly CRATE_OF_FISH_32938 = 32938;
16025
+ static readonly CRATE_OF_FISH_32939 = 32939;
16026
+ static readonly CRATE_OF_SAND_32940 = 32940;
16027
+ static readonly CRATE_OF_RED_CORAL_32941 = 32941;
16028
+ static readonly CRATE_OF_FISH_32942 = 32942;
16029
+ static readonly CRATE_OF_SPICES_32943 = 32943;
16030
+ static readonly CRATE_OF_JEWELLERY_32944 = 32944;
16031
+ static readonly CRATE_OF_BAIT_32945 = 32945;
16032
+ static readonly CRATE_OF_COCONUTS_32946 = 32946;
16033
+ static readonly CRATE_OF_ARROWTIPS_32947 = 32947;
16034
+ static readonly CRATE_OF_PINEAPPLES_32948 = 32948;
16035
+ static readonly CRATE_OF_LOGS_32949 = 32949;
16036
+ static readonly CRATE_OF_PLANKS_32950 = 32950;
16037
+ static readonly CRATE_OF_LOGS_32951 = 32951;
16038
+ static readonly CRATE_OF_ALPACA_WOOL_32952 = 32952;
16039
+ static readonly CRATE_OF_PLANKS_32953 = 32953;
16040
+ static readonly CRATE_OF_FABRICS_32954 = 32954;
16041
+ static readonly CRATE_OF_PLANKS_32955 = 32955;
16042
+ static readonly CRATE_OF_LOGS_32956 = 32956;
16043
+ static readonly CRATE_OF_PLANKS_32957 = 32957;
16044
+ static readonly CRATE_OF_FISH_32958 = 32958;
16045
+ static readonly CRATE_OF_FISH_32959 = 32959;
16046
+ static readonly CRATE_OF_GEMS_32960 = 32960;
16047
+ static readonly CRATE_OF_FISH_32961 = 32961;
16048
+ static readonly CRATE_OF_FISH_32962 = 32962;
16049
+ static readonly CRATE_OF_POTIONS_32963 = 32963;
16050
+ static readonly CRATE_OF_FURS_32964 = 32964;
16051
+ static readonly CRATE_OF_SWAMP_PASTE_32965 = 32965;
16052
+ static readonly CRATE_OF_PLANKS_32966 = 32966;
16053
+ static readonly CRATE_OF_BOOKS_32967 = 32967;
16054
+ static readonly CRATE_OF_BOOKS_32968 = 32968;
16055
+ static readonly CRATE_OF_JEWELLERY_32969 = 32969;
16056
+ static readonly CRATE_OF_JEWELLERY_32970 = 32970;
16057
+ static readonly CRATE_OF_PLANKS_32971 = 32971;
16058
+ static readonly CRATE_OF_FURS_32972 = 32972;
16059
+ static readonly CRATE_OF_FISH_32973 = 32973;
16060
+ static readonly CRATE_OF_FISH_32974 = 32974;
16061
+ static readonly CRATE_OF_SILK_32975 = 32975;
16062
+ static readonly CRATE_OF_FISH_32976 = 32976;
16063
+ static readonly CRATE_OF_LOGS_32977 = 32977;
16064
+ static readonly CRATE_OF_SWORDS_32978 = 32978;
16065
+ static readonly CRATE_OF_FISH_32979 = 32979;
16066
+ static readonly CRATE_OF_FISH_32980 = 32980;
16067
+ static readonly CRATE_OF_SEEDS_32981 = 32981;
16068
+ static readonly CRATE_OF_SWORDS_32982 = 32982;
16069
+ static readonly CRATE_OF_PLATEBODIES_32983 = 32983;
16070
+ static readonly CRATE_OF_SWORDS_32984 = 32984;
16071
+ static readonly CRATE_OF_ORES_32985 = 32985;
16072
+ static readonly CRATE_OF_LOGS_32986 = 32986;
16073
+ static readonly CRATE_OF_POTIONS_32987 = 32987;
16074
+ static readonly CRATE_OF_FISH_32988 = 32988;
16075
+ static readonly CRATE_OF_FISH_32989 = 32989;
16076
+ static readonly CRATE_OF_RUNES_32990 = 32990;
16077
+ static readonly CRATE_OF_FISH_32991 = 32991;
16078
+ static readonly CRATE_OF_PLANKS_32992 = 32992;
16079
+ static readonly CRATE_OF_TEAK_LOGS_32993 = 32993;
16080
+ static readonly CRATE_OF_RUNES_32994 = 32994;
16081
+ static readonly CRATE_OF_COCKTAILS_32995 = 32995;
16082
+ static readonly CRATE_OF_SHIP_PARTS_32996 = 32996;
16083
+ static readonly CRATE_OF_RUM_32997 = 32997;
16084
+ static readonly CRATE_OF_JAVELINS_32998 = 32998;
16085
+ static readonly CRATE_OF_POTIONS_32999 = 32999;
16086
+ static readonly CRATE_OF_ORES_33000 = 33000;
16087
+ static readonly CRATE_OF_POTIONS_33001 = 33001;
16088
+ static readonly HOLY_MOLEYS = 33002;
16089
+ static readonly KHARIDIAN_QUEST_LAMP = 33004;
16090
+ static readonly MYREQUE_QUEST_LAMP = 33005;
16091
+ static readonly DRAGONKIN_QUEST_LAMP = 33006;
16092
+ static readonly MAHJARRAT_2_QUEST_LAMP = 33007;
16093
+ static readonly CAMELOT_QUEST_LAMP = 33008;
16094
+ static readonly RECIPE_FOR_DISASTER_QUEST_LAMP = 33009;
16095
+ static readonly RUINOUS_POWERS_33010 = 33010;
16096
+ static readonly ANNIHILATION_WEAPON_SCROLL = 33012;
16097
+ static readonly ANNIHILATION_BLUEPRINTS = 33015;
16098
+ static readonly ANNIHILATION_TELEPORT_SCROLL = 33018;
16099
+ static readonly BOW_OF_FAERDHINEN_C_33021 = 33021;
16100
+ static readonly CRYSTAL_BODY_33023 = 33023;
16101
+ static readonly CRYSTAL_BODY_INACTIVE_33025 = 33025;
16102
+ static readonly CRYSTAL_LEGS_33027 = 33027;
16103
+ static readonly CRYSTAL_LEGS_INACTIVE_33029 = 33029;
16104
+ static readonly CRYSTAL_HELM_33031 = 33031;
16105
+ static readonly CRYSTAL_HELM_INACTIVE_33033 = 33033;
16106
+ static readonly TOXIC_STAFF_UNCHARGED_33035 = 33035;
16107
+ static readonly TOXIC_STAFF_DEADMAN = 33036;
16108
+ static readonly THE_DOGSWORD_33038 = 33038;
16109
+ static readonly THUNDER_KHOPESH_33041 = 33041;
16110
+ static readonly TRINKET_OF_AVARICE = 33044;
16111
+ static readonly TRINKET_OF_FORTUITY_INACTIVE = 33047;
16112
+ static readonly TRINKET_OF_FORTUITY_ACTIVE = 33050;
16113
+ static readonly SIGIL_OF_THE_GODS = 33053;
16114
+ static readonly SIGIL_OF_THE_GODS_33054 = 33054;
16115
+ static readonly SIGIL_OF_CONCLUSION = 33055;
16116
+ static readonly SIGIL_OF_CONCLUSION_33056 = 33056;
16117
+ static readonly SIGIL_OF_AUTOMATION = 33057;
16118
+ static readonly SIGIL_OF_AUTOMATION_33058 = 33058;
16119
+ static readonly SIGIL_OF_ETERNAL_BELIEF = 33059;
16120
+ static readonly SIGIL_OF_ETERNAL_BELIEF_33060 = 33060;
16121
+ static readonly SIGIL_OF_EFFICIENCY = 33061;
16122
+ static readonly SIGIL_OF_EFFICIENCY_33062 = 33062;
16123
+ static readonly STARTER_CAPE = 33063;
16124
+ static readonly DEADMANS_SKULL = 33065;
16125
+ static readonly HOODED_SLAYER_HELMET = 33066;
16126
+ static readonly HOODED_SLAYER_HELMET_I = 33068;
16127
+ static readonly HOODED_SLAYER_HELMET_I_33070 = 33070;
16128
+ static readonly HOODED_SLAYER_HELMET_I_33072 = 33072;
16129
+ static readonly FACILITY_BOTTLE_EMPTY = 33074;
16130
+ static readonly FACILITY_BOTTLE_FULL = 33077;
16023
16131
  }
16024
16132
  }
@@ -12354,6 +12354,7 @@ declare namespace net.runelite.api {
12354
12354
  static readonly RUSTY_CHEST = 14811;
12355
12355
  static readonly TARNISHED_CHEST = 14812;
12356
12356
  static readonly RUSTY_CHEST_14813 = 14813;
12357
+ static readonly REVENANT_IMP_14814 = 14814;
12357
12358
  static readonly SPOOKY_CHAIR = 14815;
12358
12359
  static readonly MAKO = 14816;
12359
12360
  static readonly MORA = 14817;
@@ -12396,6 +12397,8 @@ declare namespace net.runelite.api {
12396
12397
  static readonly SHELLBANE_GRYPHON = 14860;
12397
12398
  static readonly ELDER_KELMO = 14861;
12398
12399
  static readonly ELDER_NAMA = 14863;
12400
+ static readonly REVENANT_GOBLIN_14864 = 14864;
12401
+ static readonly REVENANT_PYREFIEND_14865 = 14865;
12399
12402
  static readonly HENDERSON = 14866;
12400
12403
  static readonly ONE_EYED_ROSALEE = 14867;
12401
12404
  static readonly CAPTAIN_DAWSON = 14868;
@@ -12666,6 +12669,14 @@ declare namespace net.runelite.api {
12666
12669
  static readonly DRINK_TROLL_QUEEN = 15175;
12667
12670
  static readonly DRINK_TROLL_QUEEN_15176 = 15176;
12668
12671
  static readonly SAILING_CAT = 15177;
12672
+ static readonly REVENANT_HOBGOBLIN_15178 = 15178;
12673
+ static readonly REVENANT_CYCLOPS_15179 = 15179;
12674
+ static readonly REVENANT_HELLHOUND_15180 = 15180;
12675
+ static readonly REVENANT_DEMON_15181 = 15181;
12676
+ static readonly REVENANT_ORK_15182 = 15182;
12677
+ static readonly REVENANT_DARK_BEAST_15183 = 15183;
12678
+ static readonly REVENANT_KNIGHT_15184 = 15184;
12679
+ static readonly REVENANT_DRAGON_15185 = 15185;
12669
12680
  static readonly PUNCHING_BAG = 15191;
12670
12681
  static readonly PUNCHING_BAG_15192 = 15192;
12671
12682
  static readonly DPS_CALC = 15193;
@@ -12712,6 +12723,7 @@ declare namespace net.runelite.api {
12712
12723
  static readonly DOLPHIN = 15234;
12713
12724
  static readonly DOLPHIN_15235 = 15235;
12714
12725
  static readonly DOLPHIN_CALF = 15236;
12726
+ static readonly ZEMOUREGAL_15237 = 15237;
12715
12727
  static readonly JUNIOR_JIM_15238 = 15238;
12716
12728
  static readonly JUMBO_JIM = 15239;
12717
12729
  static readonly CREW_REGISTRAR = 15245;
@@ -12974,24 +12986,25 @@ declare namespace net.runelite.api {
12974
12986
  static readonly TRADER_CREWMEMBER_15544 = 15544;
12975
12987
  static readonly TRADER_CREWMEMBER_15545 = 15545;
12976
12988
  static readonly TRADER_CREWMEMBER_15546 = 15546;
12977
- static readonly STOOL = 15548;
12978
- static readonly SIR_PRYSIN_15549 = 15549;
12979
- static readonly AGGIE_15550 = 15550;
12980
- static readonly JOBLESS_JIM_15551 = 15551;
12981
- static readonly HANS_15552 = 15552;
12982
- static readonly KARIM_15553 = 15553;
12983
- static readonly OZIACH_15554 = 15554;
12984
- static readonly ROMMIK_15555 = 15555;
12985
- static readonly DORIS_15556 = 15556;
12986
- static readonly HERQUIN_15557 = 15557;
12987
- static readonly PUFFIN_15558 = 15558;
12988
- static readonly COOK_15559 = 15559;
12989
- static readonly COOK_15560 = 15560;
12990
- static readonly BARTENDER_15561 = 15561;
12991
- static readonly WOMAN_15562 = 15562;
12992
- static readonly JONNY_THE_BEARD_15563 = 15563;
12993
- static readonly DR_HARLOW_15564 = 15564;
12994
- static readonly BARBARIAN_15565 = 15565;
12995
- static readonly MOD_FREDDIE = 15566;
12989
+ static readonly BIG_EVIL_CHICKEN = 15547;
12990
+ static readonly SCURRIUS_15548 = 15548;
12991
+ static readonly PHANTOM_MUSPAH_15549 = 15549;
12992
+ static readonly SPLATTER_15550 = 15550;
12993
+ static readonly TUMEKENS_WARDEN_15551 = 15551;
12994
+ static readonly ELIDINIS_WARDEN_15552 = 15552;
12995
+ static readonly I_DSCIM_YOU = 15553;
12996
+ static readonly SOL_HEREDIT_15554 = 15554;
12997
+ static readonly YAMA_15555 = 15555;
12998
+ static readonly PESTILENT_BLOAT_15556 = 15556;
12999
+ static readonly TZTOKJADREK = 15557;
13000
+ static readonly ZEMOUREGAL_SUMMON = 15558;
13001
+ static readonly ZEMOUREGAL_SUMMON_15559 = 15559;
13002
+ static readonly ZEMOUREGAL_SUMMON_15560 = 15560;
13003
+ static readonly ZEMOUREGAL_SUMMON_15561 = 15561;
13004
+ static readonly ZEMOUREGAL_SUMMON_15562 = 15562;
13005
+ static readonly ZEMOUREGAL_SUMMON_15563 = 15563;
13006
+ static readonly ZEMOUREGAL_15564 = 15564;
13007
+ static readonly GUARD_15566 = 15566;
13008
+ static readonly GUARD_15568 = 15568;
12996
13009
  }
12997
13010
  }