@deafwave/osrs-botmaker-types 0.3.0 → 0.3.8

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 (88) hide show
  1. package/dist/src/types/java/Java.d.ts +8 -0
  2. package/dist/src/types/java/JavaImporter.d.ts +6 -0
  3. package/dist/src/types/java/awt/BorderLayout.d.ts +16 -0
  4. package/dist/src/types/java/awt/Color.d.ts +2 -0
  5. package/dist/src/types/java/awt/Component.d.ts +5 -0
  6. package/dist/src/types/java/awt/Container.d.ts +12 -0
  7. package/dist/src/types/java/awt/FlowLayout.d.ts +16 -0
  8. package/dist/src/types/java/awt/Font.d.ts +24 -0
  9. package/dist/src/types/java/awt/GradientPaint.d.ts +5 -0
  10. package/dist/src/types/java/awt/Graphics2D.d.ts +3 -1
  11. package/dist/src/types/java/awt/GridBagConstraints.d.ts +56 -0
  12. package/dist/src/types/java/awt/GridBagLayout.d.ts +13 -0
  13. package/dist/src/types/java/awt/Insets.d.ts +28 -0
  14. package/dist/src/types/java/awt/Polygon.d.ts +14 -0
  15. package/dist/src/types/java/awt/Rectangle.d.ts +18 -0
  16. package/dist/src/types/java/awt/ToolKit.d.ts +15 -0
  17. package/dist/src/types/java/awt/datatransfer/Clipboard.d.ts +40 -0
  18. package/dist/src/types/java/awt/datatransfer/ClipboardOwner.d.ts +14 -0
  19. package/dist/src/types/java/awt/datatransfer/DataFlavor.d.ts +33 -0
  20. package/dist/src/types/java/awt/datatransfer/StringSelection.d.ts +34 -0
  21. package/dist/src/types/java/awt/datatransfer/Transferable.d.ts +24 -0
  22. package/dist/src/types/java/awt/event/ActionListener.d.ts +6 -0
  23. package/dist/src/types/java/awt/event/ChangeListener.d.ts +6 -0
  24. package/dist/src/types/java/awt/event/DocumentListener.d.ts +28 -0
  25. package/dist/src/types/java/awt/event/FocusListener.d.ts +15 -0
  26. package/dist/src/types/java/awt/event/ItemListener.d.ts +11 -0
  27. package/dist/src/types/java/awt/event/KeyAdapter.d.ts +9 -0
  28. package/dist/src/types/java/awt/event/KeyEvent.d.ts +72 -8
  29. package/dist/src/types/java/awt/event/KeyListener.d.ts +7 -0
  30. package/dist/src/types/java/awt/event/MouseAdapter.d.ts +11 -0
  31. package/dist/src/types/java/awt/event/MouseListener.d.ts +11 -0
  32. package/dist/src/types/java/awt/event/WindowListener.d.ts +25 -0
  33. package/dist/src/types/java/awt/geom/AffineTransform.d.ts +47 -0
  34. package/dist/src/types/java/index.d.ts +65 -0
  35. package/dist/src/types/java/lang/Object.d.ts +18 -0
  36. package/dist/src/types/java/swing/Border.d.ts +7 -0
  37. package/dist/src/types/java/swing/BorderFactory.d.ts +18 -0
  38. package/dist/src/types/java/swing/BoxLayout.d.ts +11 -0
  39. package/dist/src/types/java/swing/CustomPanel.d.ts +5 -0
  40. package/dist/src/types/java/swing/DefaultListModel.d.ts +15 -0
  41. package/dist/src/types/java/swing/DefaultTableModel.d.ts +17 -0
  42. package/dist/src/types/java/swing/Icon.d.ts +11 -0
  43. package/dist/src/types/java/swing/JButton.d.ts +36 -0
  44. package/dist/src/types/java/swing/JCheckBox.d.ts +17 -0
  45. package/dist/src/types/java/swing/JComboBox.d.ts +25 -0
  46. package/dist/src/types/java/swing/JComponent.d.ts +20 -0
  47. package/dist/src/types/java/swing/JFrame.d.ts +31 -0
  48. package/dist/src/types/java/swing/JLabel.d.ts +27 -0
  49. package/dist/src/types/java/swing/JList.d.ts +22 -0
  50. package/dist/src/types/java/swing/JMenu.d.ts +13 -0
  51. package/dist/src/types/java/swing/JMenuBar.d.ts +11 -0
  52. package/dist/src/types/java/swing/JMenuItem.d.ts +12 -0
  53. package/dist/src/types/java/swing/JPanel.d.ts +33 -0
  54. package/dist/src/types/java/swing/JProgressBar.d.ts +18 -0
  55. package/dist/src/types/java/swing/JScrollPane.d.ts +28 -0
  56. package/dist/src/types/java/swing/JSlider.d.ts +24 -0
  57. package/dist/src/types/java/swing/JSplitPane.d.ts +22 -0
  58. package/dist/src/types/java/swing/JTabbedPane.d.ts +16 -0
  59. package/dist/src/types/java/swing/JTable.d.ts +27 -0
  60. package/dist/src/types/java/swing/JTextArea.d.ts +29 -0
  61. package/dist/src/types/java/swing/JTextField.d.ts +24 -0
  62. package/dist/src/types/java/swing/JToggleButton.d.ts +8 -0
  63. package/dist/src/types/java/swing/JToolBar.d.ts +14 -0
  64. package/dist/src/types/java/swing/ListSelectionModel.d.ts +18 -0
  65. package/dist/src/types/java/swing/TableModel.d.ts +34 -0
  66. package/dist/src/types/java/swing/createToggleboxDropdownPanel.d.ts +10 -0
  67. package/dist/src/types/java/swing/event/ListSelectionEvent.d.ts +10 -0
  68. package/dist/src/types/java/swing/event/ListSelectionListener.d.ts +5 -0
  69. package/dist/src/types/java/swing/table/DefaultTableCellRenderer.d.ts +18 -0
  70. package/dist/src/types/java/swing/table/TableColumn.d.ts +5 -0
  71. package/dist/src/types/java/swing/table/TableColumnModel.d.ts +5 -0
  72. package/dist/src/types/java/util/index.d.ts +90 -53
  73. package/dist/src/types/runelite/net/runelite/api/AnimationID.d.ts +90 -22
  74. package/dist/src/types/runelite/net/runelite/api/EnumID.d.ts +21 -0
  75. package/dist/src/types/runelite/net/runelite/api/ItemID.d.ts +730 -22
  76. package/dist/src/types/runelite/net/runelite/api/KeyCode.d.ts +99 -6
  77. package/dist/src/types/runelite/net/runelite/api/NpcID.d.ts +1222 -45
  78. package/dist/src/types/runelite/net/runelite/api/ObjectID.d.ts +2500 -208
  79. package/dist/src/types/runelite/net/runelite/api/ParamID.d.ts +163 -0
  80. package/dist/src/types/runelite/net/runelite/api/ScriptID.d.ts +96 -7
  81. package/dist/src/types/runelite/net/runelite/api/SpriteID.d.ts +139 -9
  82. package/dist/src/types/runelite/net/runelite/api/coords/WorldPoint.d.ts +16 -72
  83. package/dist/src/types/runelite/net/runelite/api/widgets/ComponentID.d.ts +80 -1789
  84. package/dist/src/types/runelite/net/runelite/api/widgets/WidgetID.d.ts +155 -157
  85. package/dist/src/types/runelite/net/runelite/client/config/ConfigManager.d.ts +101 -112
  86. package/dist/src/types/sox/api/bot.d.ts +93 -4
  87. package/dist/src/types/sox/index.d.ts +45 -2
  88. package/package.json +53 -53
@@ -378,7 +378,9 @@ declare namespace net.runelite.api {
378
378
  static readonly SPELL_WATER_SURGE = 363;
379
379
  static readonly SPELL_EARTH_SURGE = 364;
380
380
  static readonly SPELL_FIRE_SURGE = 365;
381
- /* Unmapped: 366, 367, 368 */
381
+ /* Unmapped: 366 */
382
+ static readonly SPELL_CIVITAS_ILLA_FORTIS_TELEPORT = 367;
383
+ /* Unmapped: 368 */
382
384
  static readonly SPELL_BIND_DISABLED = 369;
383
385
  static readonly SPELL_SNARE_DISABLED = 370;
384
386
  static readonly SPELL_ENTANGLE_DISABLED = 371;
@@ -532,8 +534,6 @@ declare namespace net.runelite.api {
532
534
  static readonly FIGHT_PITS_WINNER_SKULL_RED = 524;
533
535
  static readonly BOUNTY_HUNTER_TARGET_WEALTH_5_VERY_HIGH = 525;
534
536
  static readonly BOUNTY_HUNTER_TARGET_WEALTH_4_HIGH = 526;
535
- static readonly BOUNTY_HUNTER_TARGET_WEALTH_3_MEDIUM = 527;
536
- static readonly BOUNTY_HUNTER_TARGET_WEALTH_2_LOW = 528;
537
537
  static readonly HOUSE_LOADING_SCREEN = 529;
538
538
  static readonly TEXTURE_ROUGH_STONE = 530;
539
539
  static readonly TEXTURE_WATER_531 = 531;
@@ -771,7 +771,6 @@ declare namespace net.runelite.api {
771
771
  static readonly TAB_QUESTS = 776;
772
772
  static readonly RS2_TAB_INVENTORY = 777;
773
773
  static readonly RS2_TAB_EQUIPMENT = 778;
774
- static readonly RS2_TAB_PRAYER = 779;
775
774
  static readonly TAB_PRAYER = 779;
776
775
  static readonly TAB_MAGIC = 780;
777
776
  static readonly RS2_TAB_FRIENDS_CHAT = 781;
@@ -1056,7 +1055,6 @@ declare namespace net.runelite.api {
1056
1055
  static readonly MINIMAP_ORB_RUN_ICON_SLOWED_DEPLETION = 1092;
1057
1056
  static readonly FRIENDS_PREVIOUS_USERNAME = 1093;
1058
1057
  static readonly UNKNOWN_MAP_ICON_INFORMATION_I = 1094;
1059
- static readonly BOUNTY_HUNTER_TARGET_NONE = 1095;
1060
1058
  static readonly BOUNTY_HUNTER_TARGET_WEALTH_1_VERY_LOW = 1096;
1061
1059
  static readonly DEADMAN_BANK_KEYS_5 = 1097;
1062
1060
  static readonly ABLEGAMERS_PROMO_BANNER = 1098;
@@ -1281,7 +1279,8 @@ declare namespace net.runelite.api {
1281
1279
  static readonly EMOTE_SMOOTH_DANCE_LOCKED = 1355;
1282
1280
  static readonly EMOTE_CRAZY_DANCE_LOCKED = 1356;
1283
1281
  static readonly EMOTE_PREMIER_SHIELD_LOCKED = 1357;
1284
- /* Unmapped: 1358~1359 */
1282
+ static readonly HITSPLAT_BLUE_MISS = 1358;
1283
+ /* Unmapped: 1359 */
1285
1284
  static readonly HITSPLAT_GREEN_POISON = 1360;
1286
1285
  /* Unmapped: 1361~1363 */
1287
1286
  static readonly BOUNTY_HUNTER_SKIP_TARGET = 1364;
@@ -1340,10 +1339,12 @@ declare namespace net.runelite.api {
1340
1339
  /* Unmapped: 1419 */
1341
1340
  static readonly PRAYER_RIGOUR = 1420;
1342
1341
  static readonly PRAYER_AUGURY = 1421;
1343
- /* Unmapped: 1422, 1423 */
1342
+ static readonly PRAYER_DEADEYE = 1422;
1343
+ static readonly PRAYER_MYSTIC_VIGOUR = 1423;
1344
1344
  static readonly PRAYER_RIGOUR_DISABLED = 1424;
1345
1345
  static readonly PRAYER_AUGURY_DISABLED = 1425;
1346
- /* Unmapped: 1426, 1427 */
1346
+ static readonly PRAYER_DEADEYE_DISABLED = 1426;
1347
+ static readonly PRAYER_MYSTIC_VIGOUR_DISABLED = 1427;
1347
1348
  static readonly UNKNOWN_BLACK_ANTICLOCKWISE_ARROW_SHADOWED = 1428;
1348
1349
  static readonly UNKNOWN_BLACK_ANTICLOCKWISE_ARROW = 1429;
1349
1350
  static readonly YELLOW_CLICK_ANIMATION_1_1430 = 1430;
@@ -1655,12 +1656,53 @@ declare namespace net.runelite.api {
1655
1656
  static readonly HEALTHBAR_YELLOW_FRONT_70PX = 2977;
1656
1657
  static readonly HEALTHBAR_YELLOW_BACK_70PX = 2978;
1657
1658
  /* Unmapped: 2979, 2980 */
1659
+ static readonly SPELL_RESURRECT_GREATER_GHOST = 2980;
1658
1660
  static readonly SPELL_RESURRECT_SUPERIOR_SKELETON = 2981;
1659
1661
  /* Unmapped: 2982~2983 */
1660
1662
  static readonly SPELL_RESURRECT_GREATER_ZOMBIE = 2984;
1661
1663
  /* Unmapped: 2985~2986 */
1662
1664
  static readonly SPELL_RESURRECT_SUPERIOR_SKELETON_DISABLED = 2987;
1663
- /* Unmapped: 2988~4707 */
1665
+ /* Unmapped: 2988~4259 */
1666
+ static readonly HISCORE_MIMIC = 4260;
1667
+ static readonly HISCORE_OBOR = 4261;
1668
+ static readonly HISCORE_BRYOPHYTA = 4262;
1669
+ static readonly HISCORE_GIANT_MOLE = 4263;
1670
+ static readonly HISCORE_GROTESQUE_GUARDIANS = 4264;
1671
+ static readonly HISCORE_TEMPOROSS = 4265;
1672
+ static readonly HISCORE_WINTERTODT = 4266;
1673
+ static readonly HISCORE_BARROWS_CHESTS = 4267;
1674
+ static readonly HISCORE_SARACHNIS = 4269;
1675
+ static readonly HISCORE_KALPHITE_QUEEN = 4270;
1676
+ static readonly HISCORE_HESPORI = 4271;
1677
+ static readonly HISCORE_SKOTIZO = 4272;
1678
+ static readonly HISCORE_ZALCANO = 4273;
1679
+ static readonly HISCORE_KING_BLACK_DRAGON = 4274;
1680
+ static readonly HISCORE_KRAKEN = 4275;
1681
+ static readonly HISCORE_ABYSSAL_SIRE = 4276;
1682
+ static readonly HISCORE_THERMONUCLEAR_SMOKE_DEVIL = 4277;
1683
+ static readonly HISCORE_THE_GAUNTLET = 4278;
1684
+ static readonly HISCORE_ZULRAH = 4279;
1685
+ static readonly HISCORE_CERBERUS = 4280;
1686
+ static readonly HISCORE_VORKATH = 4281;
1687
+ static readonly HISCORE_GENERAL_GRAARDOR = 4282;
1688
+ static readonly HISCORE_KRIL_TSUTSAROTH = 4283;
1689
+ static readonly HISCORE_COMMANDER_ZILYANA = 4284;
1690
+ static readonly HISCORE_KREEARRA = 4285;
1691
+ static readonly HISCORE_NIGHTMARE = 4286;
1692
+ static readonly HISCORE_CORPOREAL_BEAST = 4287;
1693
+ static readonly HISCORE_CHAMBERS_OF_XERIC = 4288;
1694
+ static readonly HISCORE_ALCHEMICAL_HYDRA = 4289;
1695
+ static readonly HISCORE_THEATRE_OF_BLOOD = 4290;
1696
+ static readonly HISCORE_NEX = 4291;
1697
+ static readonly HISCORE_DAGANNOTH_SUPREME = 4292;
1698
+ static readonly HISCORE_DAGANNOTH_REX = 4293;
1699
+ static readonly HISCORE_DAGANNOTH_PRIME = 4294;
1700
+ static readonly HISCORE_THE_CORRUPTED_GAUNTLET = 4295;
1701
+ static readonly HISCORE_CHAMBERS_OF_XERIC_CHALLENGE_MODE = 4296;
1702
+ static readonly HISCORE_TOMBS_OF_AMASCUT = 4297;
1703
+ static readonly HISCORE_TOMBS_OF_AMASCUT_EXPERT = 4298;
1704
+ static readonly HISCORE_PHANTOM_MUSPAH = 4299;
1705
+ /* Unmapped: 4300~4707 */
1664
1706
  static readonly HEALTHBAR_PURPLE_FRONT_30PX = 4708;
1665
1707
  static readonly HEALTHBAR_PURPLE_BACK_30PX = 4709;
1666
1708
  static readonly HEALTHBAR_PURPLE_FRONT_40PX = 4710;
@@ -1681,6 +1723,30 @@ declare namespace net.runelite.api {
1681
1723
  static readonly HEALTHBAR_PURPLE_BACK_140PX = 4725;
1682
1724
  static readonly HEALTHBAR_PURPLE_FRONT_160PX = 4726;
1683
1725
  static readonly HEALTHBAR_PURPLE_BACK_160PX = 4727;
1726
+ /* Unmapped: 4728~4765 */
1727
+ static readonly COLOSSEUM_DOOM = 4766;
1728
+ /* Unmapped: 4767~4770 */
1729
+ static readonly HEALTHBAR_GREEN_FRONT_30PX = 4771;
1730
+ static readonly HEALTHBAR_GREEN_BACK_30PX = 4772;
1731
+ static readonly HEALTHBAR_GREEN_FRONT_40PX = 4773;
1732
+ static readonly HEALTHBAR_GREEN_BACK_40PX = 4774;
1733
+ static readonly HEALTHBAR_GREEN_FRONT_50PX = 4775;
1734
+ static readonly HEALTHBAR_GREEN_BACK_50PX = 4776;
1735
+ static readonly HEALTHBAR_GREEN_FRONT_60PX = 4777;
1736
+ static readonly HEALTHBAR_GREEN_BACK_60PX = 4778;
1737
+ static readonly HEALTHBAR_GREEN_FRONT_70PX = 4779;
1738
+ static readonly HEALTHBAR_GREEN_BACK_70PX = 4780;
1739
+ static readonly HEALTHBAR_GREEN_FRONT_80PX = 4781;
1740
+ static readonly HEALTHBAR_GREEN_BACK_80PX = 4782;
1741
+ static readonly HEALTHBAR_GREEN_FRONT_100PX = 4783;
1742
+ static readonly HEALTHBAR_GREEN_BACK_100PX = 4784;
1743
+ static readonly HEALTHBAR_GREEN_FRONT_120PX = 4785;
1744
+ static readonly HEALTHBAR_GREEN_BACK_120PX = 4786;
1745
+ static readonly HEALTHBAR_GREEN_FRONT_140PX = 4787;
1746
+ static readonly HEALTHBAR_GREEN_BACK_140PX = 4788;
1747
+ static readonly HEALTHBAR_GREEN_FRONT_160PX = 4789;
1748
+ static readonly HEALTHBAR_GREEN_BACK_160PX = 4790;
1749
+ /* Unmapped: 4791~4842 */
1684
1750
  static readonly PRAYER_RP_ANCIENT_STRENGTH = 4843;
1685
1751
  static readonly PRAYER_RP_ANCIENT_SIGHT = 4844;
1686
1752
  static readonly PRAYER_RP_ANCIENT_WILL = 4845;
@@ -1706,5 +1772,69 @@ declare namespace net.runelite.api {
1706
1772
  static readonly PRAYER_RP_VINDICATION = 4863;
1707
1773
  static readonly PRAYER_RP_PROTECT_ITEM = 4865;
1708
1774
  static readonly ACTIVATED_PRAYER_BACKGROUND = 4892;
1775
+ /* Unmapped: 4893~5250 */
1776
+ static readonly EMOTE_FORTIS_SALUTE = 5251;
1777
+ /* Unmapped: 5252~5578 */
1778
+ static readonly HEALTHBAR_BLOOD_MOON_FRONT_120PX = 5579;
1779
+ static readonly HEALTHBAR_BLOOD_MOON_BACK_120PX = 5580;
1780
+ static readonly HEALTHBAR_BLUE_MOON_FRONT_120PX = 5581;
1781
+ static readonly HEALTHBAR_BLUE_MOON_BACK_120PX = 5582;
1782
+ static readonly HEALTHBAR_ECLIPSE_MOON_FRONT_120PX = 5583;
1783
+ static readonly HEALTHBAR_ECLIPSE_MOON_BACK_120PX = 5584;
1784
+ /* Unmapped: 5585~5608 */
1785
+ static readonly HEALTHBAR_DEFAULT_FRONT_90PX = 5609;
1786
+ static readonly HEALTHBAR_DEFAULT_BACK_90PX = 5610;
1787
+ static readonly HEALTHBAR_CYAN_FRONT_90PX = 5611;
1788
+ static readonly HEALTHBAR_CYAN_BACK_90PX = 5612;
1789
+ static readonly HEALTHBAR_ORANGE_FRONT_90PX = 5613;
1790
+ static readonly HEALTHBAR_ORANGE_BACK_90PX = 5614;
1791
+ static readonly HEALTHBAR_YELLOW_FRONT_90PX = 5615;
1792
+ static readonly HEALTHBAR_YELLOW_BACK_90PX = 5616;
1793
+ static readonly HEALTHBAR_PURPLE_FRONT_90PX = 5617;
1794
+ static readonly HEALTHBAR_PURPLE_BACK_90PX = 5618;
1795
+ static readonly HEALTHBAR_GREEN_FRONT_90PX = 5619;
1796
+ static readonly HEALTHBAR_GREEN_BACK_90PX = 5620;
1797
+ static readonly HISCORE_CHAOS_ELEMENTAL = 5621;
1798
+ static readonly HISCORE_ARTIO_CALLISTO = 5622;
1799
+ static readonly HISCORE_CALVARION_VETION = 5623;
1800
+ static readonly HISCORE_SPINDEL_VENENATIS = 5624;
1801
+ static readonly HISCORE_CHAOS_FANATIC = 5625;
1802
+ static readonly HISCORE_CRAZY_ARCHAEOLOGIST = 5626;
1803
+ static readonly HISCORE_DERANGED_ARCHAEOLOGIST = 5627;
1804
+ static readonly HISCORE_SCORPIA = 5628;
1805
+ static readonly HISCORE_TZTOK_JAD = 5629;
1806
+ static readonly HISCORE_TZKAL_ZUK = 5630;
1807
+ static readonly HISCORE_THE_WHISPERER = 5631;
1808
+ static readonly HISCORE_DUKE_SUCELLUS = 5632;
1809
+ static readonly HISCORE_THE_LEVIATHAN = 5633;
1810
+ static readonly HISCORE_VARDORVIS = 5634;
1811
+ static readonly HISCORE_SCURRIUS = 5635;
1812
+ static readonly HISCORE_SOL_HEREDIT = 5636;
1813
+ static readonly HISCORE_LUNAR_CHESTS = 5637;
1814
+ static readonly HISCORE_ARAXXOR = 5638;
1815
+ static readonly HISCORE_AMOXLIATL = 5639;
1816
+ static readonly HISCORE_THE_HUEYCOATL = 5640;
1817
+ /* Unmapped: 5641~5643 */
1818
+ static readonly HEALTHBAR_BLOOD_MOON_FRONT_90PX = 5644;
1819
+ static readonly HEALTHBAR_BLOOD_MOON_BACK_90PX = 5645;
1820
+ static readonly HEALTHBAR_BLUE_MOON_FRONT_90PX = 5646;
1821
+ static readonly HEALTHBAR_BLUE_MOON_BACK_90PX = 5647;
1822
+ static readonly HEALTHBAR_ECLIPSE_MOON_FRONT_90PX = 5648;
1823
+ static readonly HEALTHBAR_ECLIPSE_MOON_BACK_90PX = 5649;
1824
+ /* Unmapped: 5650~5852 */
1825
+ static readonly HISCORE_CLUE_SCROLL_ALL = 5853;
1826
+ static readonly HISCORE_BOUNTY_HUNTER_HUNTER = 5854;
1827
+ static readonly HISCORE_BOUNTY_HUNTER_ROGUE = 5855;
1828
+ static readonly HISCORE_LAST_MAN_STANDING = 5856;
1829
+ static readonly HISCORE_LEAGUE_POINTS = 5857;
1830
+ static readonly HISCORE_SOUL_WARS_ZEAL = 5858;
1831
+ static readonly HISCORE_PVP_ARENA_RANK = 5859;
1832
+ static readonly HISCORE_RIFTS_CLOSED = 5860;
1833
+ static readonly HISCORE_DEADMAN_POINTS = 5861;
1834
+ static readonly HISCORE_COLOSSEUM_GLORY = 5862;
1835
+ static readonly HEALTHBAR_LAST_STAND_FRONT = 5863;
1836
+ static readonly HEALTHBAR_LAST_STAND_BACK = 5864;
1837
+ /* Unmapped: 5865~6344 */
1838
+ static readonly HISCORE_ROYAL_TITANS = 6345;
1709
1839
  }
1710
1840
  }
@@ -34,6 +34,8 @@ declare namespace net.runelite.api.coords {
34
34
  */
35
35
  export class WorldPoint {
36
36
  constructor(x: number, y: number, plane: number);
37
+
38
+ equals(worldPoint: WorldPoint): boolean;
37
39
  /**
38
40
  * X-axis coordinate.
39
41
  */
@@ -120,12 +122,7 @@ declare namespace net.runelite.api.coords {
120
122
  * @param plane the plane
121
123
  * @return the tile coordinate containing the local point
122
124
  */
123
- static fromLocal(
124
- wv: WorldView,
125
- x: number,
126
- y: number,
127
- plane: number,
128
- ): WorldPoint;
125
+ static fromLocal(wv: WorldView, x: number, y: number, plane: number): WorldPoint;
129
126
  /**
130
127
  * Gets the coordinate of the tile that contains the passed local point.
131
128
  *
@@ -135,12 +132,7 @@ declare namespace net.runelite.api.coords {
135
132
  * @param plane the plane
136
133
  * @return the tile coordinate containing the local point
137
134
  */
138
- static fromLocal(
139
- scene: Scene,
140
- x: number,
141
- y: number,
142
- plane: number,
143
- ): WorldPoint;
135
+ static fromLocal(scene: Scene, x: number, y: number, plane: number): WorldPoint;
144
136
  /**
145
137
  * Gets the coordinate of the tile that contains the passed local point.
146
138
  *
@@ -151,12 +143,7 @@ declare namespace net.runelite.api.coords {
151
143
  * @return the tile coordinate containing the local point
152
144
  */
153
145
  /** @deprecated */
154
- static fromLocal(
155
- client: Client,
156
- x: number,
157
- y: number,
158
- plane: number,
159
- ): WorldPoint;
146
+ static fromLocal(client: Client, x: number, y: number, plane: number): WorldPoint;
160
147
  /**
161
148
  * Gets the coordinate of the tile that contains the passed local point,
162
149
  * accounting for instances.
@@ -165,10 +152,7 @@ declare namespace net.runelite.api.coords {
165
152
  * @param localPoint the local coordinate
166
153
  * @return the tile coordinate containing the local point
167
154
  */
168
- static fromLocalInstance(
169
- client: Client,
170
- localPoint: LocalPoint,
171
- ): WorldPoint;
155
+ static fromLocalInstance(client: Client, localPoint: LocalPoint): WorldPoint;
172
156
  /**
173
157
  * Gets the coordinate of the tile that contains the passed local point,
174
158
  * accounting for instances.
@@ -178,11 +162,7 @@ declare namespace net.runelite.api.coords {
178
162
  * @param plane the plane the localpoint is on
179
163
  * @return the tile coordinate containing the local point
180
164
  */
181
- static fromLocalInstance(
182
- client: Client,
183
- localPoint: LocalPoint,
184
- plane: number,
185
- ): WorldPoint;
165
+ static fromLocalInstance(client: Client, localPoint: LocalPoint, plane: number): WorldPoint;
186
166
  /**
187
167
  * Gets the coordinate of the tile that contains the passed local point,
188
168
  * accounting for instances.
@@ -192,11 +172,7 @@ declare namespace net.runelite.api.coords {
192
172
  * @param plane the plane for the returned point, if it is not an instance
193
173
  * @return the tile coordinate containing the local point
194
174
  */
195
- static fromLocalInstance(
196
- scene: Scene,
197
- localPoint: LocalPoint,
198
- plane: number,
199
- ): WorldPoint;
175
+ static fromLocalInstance(scene: Scene, localPoint: LocalPoint, plane: number): WorldPoint;
200
176
  private static fromLocalInstance(
201
177
  instanceTemplateChunks: number[][][],
202
178
  localPoint: LocalPoint,
@@ -212,26 +188,17 @@ declare namespace net.runelite.api.coords {
212
188
  * more than one if the same template chunk occurs more than once on the scene.
213
189
  */
214
190
  /** @deprecated */
215
- static toLocalInstance(
216
- client: Client,
217
- worldPoint: WorldPoint,
218
- ): Collection<WorldPoint>;
191
+ static toLocalInstance(client: Client, worldPoint: WorldPoint): Collection<WorldPoint>;
219
192
  /**
220
193
  * Get occurrences of a tile on the scene, accounting for instances. There may be
221
194
  * more than one if the same template chunk occurs more than once on the scene.
222
195
  */
223
- static toLocalInstance(
224
- wv: WorldView,
225
- worldPoint: WorldPoint,
226
- ): Collection<WorldPoint>;
196
+ static toLocalInstance(wv: WorldView, worldPoint: WorldPoint): Collection<WorldPoint>;
227
197
  /**
228
198
  * Get occurrences of a tile on the scene, accounting for instances. There may be
229
199
  * more than one if the same template chunk occurs more than once on the scene.
230
200
  */
231
- static toLocalInstance(
232
- scene: Scene,
233
- worldPoint: WorldPoint,
234
- ): Collection<WorldPoint>;
201
+ static toLocalInstance(scene: Scene, worldPoint: WorldPoint): Collection<WorldPoint>;
235
202
  private static toLocalInstance(
236
203
  instanceTemplateChunks: number[][][],
237
204
  baseX: number,
@@ -276,30 +243,15 @@ declare namespace net.runelite.api.coords {
276
243
  */
277
244
  distanceTo2D(other: WorldPoint): number;
278
245
  /** @deprecated */
279
- static fromScene(
280
- client: Client,
281
- x: number,
282
- y: number,
283
- plane: number,
284
- ): WorldPoint;
246
+ static fromScene(client: Client, x: number, y: number, plane: number): WorldPoint;
285
247
  /**
286
248
  * Converts the passed scene coordinates to a world space
287
249
  */
288
- static fromScene(
289
- wv: WorldView,
290
- x: number,
291
- y: number,
292
- plane: number,
293
- ): WorldPoint;
250
+ static fromScene(wv: WorldView, x: number, y: number, plane: number): WorldPoint;
294
251
  /**
295
252
  * Converts the passed scene coordinates to a world space
296
253
  */
297
- static fromScene(
298
- scene: Scene,
299
- x: number,
300
- y: number,
301
- plane: number,
302
- ): WorldPoint;
254
+ static fromScene(scene: Scene, x: number, y: number, plane: number): WorldPoint;
303
255
  /**
304
256
  * Gets the ID of the region containing this tile.
305
257
  *
@@ -309,12 +261,7 @@ declare namespace net.runelite.api.coords {
309
261
  /**
310
262
  * Converts the passed region ID and coordinates to a world coordinate
311
263
  */
312
- static fromRegion(
313
- regionId: number,
314
- regionX: number,
315
- regionY: number,
316
- plane: number,
317
- ): WorldPoint;
264
+ static fromRegion(regionId: number, regionX: number, regionY: number, plane: number): WorldPoint;
318
265
  /**
319
266
  * Gets the X-axis coordinate of the region coordinate
320
267
  */
@@ -331,10 +278,7 @@ declare namespace net.runelite.api.coords {
331
278
  * @param toOverworld whether to convert to overworld coordinates, or to real coordinates
332
279
  * @return
333
280
  */
334
- static getMirrorPoint(
335
- worldPoint: WorldPoint,
336
- toOverworld: boolean,
337
- ): WorldPoint;
281
+ static getMirrorPoint(worldPoint: WorldPoint, toOverworld: boolean): WorldPoint;
338
282
  // Test against what we are converting from
339
283
  /**
340
284
  * Checks whether this tile is located within any of the given areas.