@deafwave/osrs-botmaker-types 0.7.4 → 0.7.13

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 (59) hide show
  1. package/dist/src/rollup/ItemID.d.ts +89 -15
  2. package/dist/src/rollup/ItemID.js +89 -15
  3. package/dist/src/rollup/NpcID.d.ts +19 -0
  4. package/dist/src/rollup/NpcID.js +19 -0
  5. package/dist/src/rollup/NullItemID.d.ts +5 -0
  6. package/dist/src/rollup/NullItemID.js +5 -0
  7. package/dist/src/rollup/NullNpcID.d.ts +13 -0
  8. package/dist/src/rollup/NullNpcID.js +13 -0
  9. package/dist/src/rollup/NullObjectID.d.ts +15 -0
  10. package/dist/src/rollup/NullObjectID.js +15 -0
  11. package/dist/src/rollup/ObjectID.d.ts +32 -0
  12. package/dist/src/rollup/ObjectID.js +32 -0
  13. package/dist/src/rollup/gameval/AnimationID.d.ts +5 -0
  14. package/dist/src/rollup/gameval/AnimationID.js +5 -0
  15. package/dist/src/rollup/gameval/DBTableID.d.ts +24 -2
  16. package/dist/src/rollup/gameval/DBTableID.js +36 -14
  17. package/dist/src/rollup/gameval/InterfaceID.d.ts +3 -1
  18. package/dist/src/rollup/gameval/InterfaceID.js +3 -1
  19. package/dist/src/rollup/gameval/ItemID.d.ts +74 -0
  20. package/dist/src/rollup/gameval/ItemID.js +74 -0
  21. package/dist/src/rollup/gameval/NpcID.d.ts +32 -0
  22. package/dist/src/rollup/gameval/NpcID.js +32 -0
  23. package/dist/src/rollup/gameval/ObjectID1.d.ts +47 -0
  24. package/dist/src/rollup/gameval/ObjectID1.js +47 -0
  25. package/dist/src/rollup/gameval/SpriteID.js +7 -7
  26. package/dist/src/rollup/gameval/VarClientID.d.ts +2 -0
  27. package/dist/src/rollup/gameval/VarClientID.js +2 -0
  28. package/dist/src/rollup/gameval/VarPlayerID.d.ts +5 -0
  29. package/dist/src/rollup/gameval/VarPlayerID.js +5 -0
  30. package/dist/src/rollup/gameval/VarbitID.d.ts +36 -0
  31. package/dist/src/rollup/gameval/VarbitID.js +36 -0
  32. package/dist/src/types/java/index.d.ts +5 -0
  33. package/dist/src/types/java/swing/AbstractButton.d.ts +24 -0
  34. package/dist/src/types/java/swing/ButtonGroup.d.ts +16 -0
  35. package/dist/src/types/java/swing/Component.d.ts +10 -0
  36. package/dist/src/types/java/swing/JCheckBox.d.ts +1 -0
  37. package/dist/src/types/java/swing/JDialog.d.ts +28 -0
  38. package/dist/src/types/java/swing/JFrame.d.ts +6 -1
  39. package/dist/src/types/java/swing/JList.d.ts +2 -0
  40. package/dist/src/types/java/swing/JRadioButton.d.ts +21 -0
  41. package/dist/src/types/java/swing/JScrollPane.d.ts +6 -6
  42. package/dist/src/types/java/util/function/Predicate.d.ts +39 -0
  43. package/dist/src/types/runelite/net/runelite/api/ItemID.d.ts +89 -15
  44. package/dist/src/types/runelite/net/runelite/api/NpcID.d.ts +19 -0
  45. package/dist/src/types/runelite/net/runelite/api/NullItemID.d.ts +5 -0
  46. package/dist/src/types/runelite/net/runelite/api/NullNpcID.d.ts +13 -0
  47. package/dist/src/types/runelite/net/runelite/api/NullObjectID.d.ts +15 -0
  48. package/dist/src/types/runelite/net/runelite/api/ObjectID.d.ts +32 -0
  49. package/dist/src/types/runelite/net/runelite/api/gameval/AnimationID.d.ts +5 -0
  50. package/dist/src/types/runelite/net/runelite/api/gameval/DBTableID.d.ts +39 -14
  51. package/dist/src/types/runelite/net/runelite/api/gameval/InterfaceID.d.ts +3 -1
  52. package/dist/src/types/runelite/net/runelite/api/gameval/ItemID.d.ts +79 -0
  53. package/dist/src/types/runelite/net/runelite/api/gameval/NpcID.d.ts +32 -0
  54. package/dist/src/types/runelite/net/runelite/api/gameval/ObjectID1.d.ts +47 -0
  55. package/dist/src/types/runelite/net/runelite/api/gameval/SpriteID.d.ts +7 -0
  56. package/dist/src/types/runelite/net/runelite/api/gameval/VarClientID.d.ts +2 -0
  57. package/dist/src/types/runelite/net/runelite/api/gameval/VarPlayerID.d.ts +5 -0
  58. package/dist/src/types/runelite/net/runelite/api/gameval/VarbitID.d.ts +36 -0
  59. package/package.json +15 -2
@@ -28502,6 +28502,7 @@ declare namespace net.runelite.api {
28502
28502
  static readonly ROCKS_58922 = 58922;
28503
28503
  static readonly NICKEL_ROCKS = 58923;
28504
28504
  static readonly ROCKS_58924 = 58924;
28505
+ static readonly CABINET_58925 = 58925;
28505
28506
  static readonly SCOREBOARD_58926 = 58926;
28506
28507
  static readonly SCOREBOARD_58927 = 58927;
28507
28508
  static readonly SCOREBOARD_58928 = 58928;
@@ -28711,6 +28712,7 @@ declare namespace net.runelite.api {
28711
28712
  static readonly SAILS_59549 = 59549;
28712
28713
  static readonly SAILS_59550 = 59550;
28713
28714
  static readonly SAILS_59551 = 59551;
28715
+ static readonly CREVICE_59552 = 59552;
28714
28716
  static readonly SAILS_59553 = 59553;
28715
28717
  static readonly HELM = 59555;
28716
28718
  static readonly HELM_59556 = 59556;
@@ -29275,5 +29277,35 @@ declare namespace net.runelite.api {
29275
29277
  static readonly SHRIMP = 60573;
29276
29278
  static readonly HAROLD = 60574;
29277
29279
  static readonly TENTACLE_60575 = 60575;
29280
+ static readonly TABLE_60576 = 60576;
29281
+ static readonly TABLE_60577 = 60577;
29282
+ static readonly TABLE_60578 = 60578;
29283
+ static readonly TABLE_60579 = 60579;
29284
+ static readonly TABLE_60580 = 60580;
29285
+ static readonly BAR_60585 = 60585;
29286
+ static readonly BAR_60586 = 60586;
29287
+ static readonly BAR_60587 = 60587;
29288
+ static readonly BAR_60588 = 60588;
29289
+ static readonly BAR_60589 = 60589;
29290
+ static readonly BAR_60590 = 60590;
29291
+ static readonly BAR_60591 = 60591;
29292
+ static readonly BAR_60592 = 60592;
29293
+ static readonly BAR_60593 = 60593;
29294
+ static readonly BAR_60594 = 60594;
29295
+ static readonly BAR_60595 = 60595;
29296
+ static readonly BAR_60596 = 60596;
29297
+ static readonly BAR_60597 = 60597;
29298
+ static readonly BAR_60598 = 60598;
29299
+ static readonly BAR_60599 = 60599;
29300
+ static readonly BAR_60600 = 60600;
29301
+ static readonly CRATE_60608 = 60608;
29302
+ static readonly CRATE_60609 = 60609;
29303
+ static readonly CRATE_60610 = 60610;
29304
+ static readonly CRATE_60611 = 60611;
29305
+ static readonly CRATE_60612 = 60612;
29306
+ static readonly CRATE_60613 = 60613;
29307
+ static readonly CRATE_60614 = 60614;
29308
+ static readonly SNOWBALL_PILE_60616 = 60616;
29309
+ static readonly SHELLBANE_GRYPHON_DISPLAY = 60619;
29278
29310
  }
29279
29311
  }
@@ -13691,5 +13691,10 @@ declare namespace net.runelite.api.gameval {
13691
13691
  static readonly VFX_WIND_SAIL_3X10_SPEEDBOOST01 = 13693;
13692
13692
  static readonly HUMAN_WORKBENCH_CRAFTING_LOOP = 13694;
13693
13693
  static readonly TURTLE_IDLE01_LOOP = 13695;
13694
+ static readonly HUMAN_XMAS25_CHRISTMAS_DINNER_READY = 13696;
13695
+ static readonly HUMAN_XMAS25_CHRISTMAS_DINNER_WALK_F = 13697;
13696
+ static readonly HUMAN_XMAS25_CHRISTMAS_DINNER_WALK_B = 13698;
13697
+ static readonly HUMAN_XMAS25_CHRISTMAS_DINNER_RUN = 13699;
13698
+ static readonly HUMAN_XMAS25_CHRISTMAS_DINNER_ATTACK = 13700;
13694
13699
  }
13695
13700
  }
@@ -266,6 +266,7 @@ declare namespace net.runelite.api.gameval {
266
266
  static readonly HALLOWEEN_2024 = 3935;
267
267
  static readonly XMAS_2024 = 4228;
268
268
  static readonly BIRTHDAY_2025 = 4318;
269
+ static readonly XMAS_2025 = 4968;
269
270
  static readonly EASTER_2025 = 5107;
270
271
  static readonly HALLOWEEN_2025 = 6989;
271
272
  static readonly ID = 2;
@@ -1301,9 +1302,9 @@ declare namespace net.runelite.api.gameval {
1301
1302
  static readonly CLUEHELPER_HOTCOLD_MASTER_VARLAMORE_SUNSET = 3488;
1302
1303
  static readonly CLUEHELPER_HOTCOLD_MASTER_VARLAMORE_BAZAAR = 3489;
1303
1304
  static readonly CLUEHELPER_HOTCOLD_MASTER_VARLAMORE_ALDARIN_THEATRE = 3689;
1305
+ static readonly CLUEHELPER_HOTCOLD_MASTER_SAIL_BUCCANEERS_HAVEN = 4963;
1304
1306
  static readonly CLUEHELPER_HOTCOLD_MASTER_VARLAMORE_RAINFOREST_CENTRE = 5182;
1305
1307
  static readonly CLUEHELPER_HOTCOLD_MASTER_SAIL_GREAT_CONCH = 7051;
1306
- static readonly CLUEHELPER_HOTCOLD_MASTER_SAIL_ISLE_OF_SERPENTS = 7052;
1307
1308
  static readonly CLUEHELPER_HOTCOLD_MASTER_SAIL_DRUMSTICK_ISLE = 7053;
1308
1309
  static readonly ID = 13;
1309
1310
  static readonly COL_ID = 0;
@@ -2270,6 +2271,7 @@ declare namespace net.runelite.api.gameval {
2270
2271
  static readonly CLUEHELPER_TARGET_COORD_0_26_50_30_47 = 3810;
2271
2272
  static readonly CLUEHELPER_TARGET_COORD_0_25_51_10_38 = 3811;
2272
2273
  static readonly CLUEHELPER_TARGET_COORD_1_25_83_40_54 = 3936;
2274
+ static readonly CLUEHELPER_TARGET_COORD_0_32_57_30_17 = 4964;
2273
2275
  static readonly CLUEHELPER_TARGET_COORD_VARLAMORE_RAINFOREST_CENTRE = 5172;
2274
2276
  static readonly CLUEHELPER_TARGET_COORD_0_20_51_41_59 = 5173;
2275
2277
  static readonly CLUEHELPER_TARGET_COORD_0_58_60_52_60 = 6152;
@@ -2281,7 +2283,6 @@ declare namespace net.runelite.api.gameval {
2281
2283
  static readonly CLUEHELPER_TARGET_COORD_0_32_49_33_48 = 7064;
2282
2284
  static readonly CLUEHELPER_TARGET_COORD_0_30_63_26_42 = 7065;
2283
2285
  static readonly CLUEHELPER_TARGET_COORD_0_50_36_49_45 = 7066;
2284
- static readonly CLUEHELPER_TARGET_COORD_0_29_37_0_47 = 7067;
2285
2286
  static readonly CLUEHELPER_TARGET_COORD_0_33_55_27_42 = 7068;
2286
2287
  static readonly CLUEHELPER_TARGET_COORD_0_32_40_21_48 = 7069;
2287
2288
  static readonly ID = 19;
@@ -4184,6 +4185,7 @@ declare namespace net.runelite.api.gameval {
4184
4185
  static readonly MUSIC_THE_HEIST = 3971;
4185
4186
  static readonly MUSIC_HEAVY_SECURITY = 3972;
4186
4187
  static readonly MUSIC_THE_PLUNDERED_TOMB = 3973;
4188
+ static readonly MUSIC_CHRISTMAS_2025 = 4969;
4187
4189
  static readonly MUSIC_YAMA_COMBAT = 5154;
4188
4190
  static readonly MUSIC_TLATI_RAINFOREST = 5377;
4189
4191
  static readonly MUSIC_AUBURN_VALLEY_1 = 5378;
@@ -4567,6 +4569,9 @@ declare namespace net.runelite.api.gameval {
4567
4569
  static readonly HUEY_SPECIAL_ATTACK_P2 = 3777;
4568
4570
  static readonly HUEY_SPECIAL_ATTACK_P3 = 3778;
4569
4571
  static readonly HUEY_SPECIAL_ATTACK_P4 = 3779;
4572
+ static readonly ID = 76;
4573
+ static readonly COL_BUTTON_STYLES = 0;
4574
+ static readonly DYNAMIC_BUILDERS_DEMO = 4965;
4570
4575
  static readonly ID = 77;
4571
4576
  static readonly COL_LOADOUT_ID = 0;
4572
4577
  static readonly COL_CONTAINER_COM = 1;
@@ -8837,18 +8842,19 @@ declare namespace net.runelite.api.gameval {
8837
8842
  static readonly COL_BOAT_ARMOUR = 10;
8838
8843
  static readonly COL_BOAT_STORMRESISTANCE = 21;
8839
8844
  static readonly COL_BOAT_RAPIDRESISTANCE = 22;
8840
- static readonly COL_BOAT_BASESPEED = 23;
8841
- static readonly COL_BOAT_SPEEDCAP = 24;
8842
- static readonly COL_BOAT_ACCELERATION = 25;
8843
- static readonly COL_BOAT_SPEEDBOOST_DURATION = 26;
8844
- static readonly COL_BOAT_CARGOHOLD_SIZE = 27;
8845
- static readonly COL_BOAT_CARGOHOLD_SIZE_UIM = 28;
8846
- static readonly COL_BOAT_FETID_WATER_RESISTANT = 29;
8847
- static readonly COL_BOAT_CRYSTAL_FLECKED_RESISTANT = 30;
8848
- static readonly COL_BOAT_TANGLED_KELP_RESISTANT = 31;
8849
- static readonly COL_BOAT_ICY_SEAS_RESISTANT = 32;
8850
- static readonly COL_BOAT_MAX_WIND_MOTES = 33;
8851
- static readonly COL_BOAT_ADDITIONAL_RECOVERY_COST_PERCENTAGE = 34;
8845
+ static readonly COL_BOAT_CRYSTALHELM_RESISTANCE = 23;
8846
+ static readonly COL_BOAT_BASESPEED = 24;
8847
+ static readonly COL_BOAT_SPEEDCAP = 25;
8848
+ static readonly COL_BOAT_ACCELERATION = 26;
8849
+ static readonly COL_BOAT_SPEEDBOOST_DURATION = 27;
8850
+ static readonly COL_BOAT_CARGOHOLD_SIZE = 28;
8851
+ static readonly COL_BOAT_CARGOHOLD_SIZE_UIM = 29;
8852
+ static readonly COL_BOAT_FETID_WATER_RESISTANT = 30;
8853
+ static readonly COL_BOAT_CRYSTAL_FLECKED_RESISTANT = 31;
8854
+ static readonly COL_BOAT_TANGLED_KELP_RESISTANT = 32;
8855
+ static readonly COL_BOAT_ICY_SEAS_RESISTANT = 33;
8856
+ static readonly COL_BOAT_MAX_WIND_MOTES = 34;
8857
+ static readonly COL_BOAT_ADDITIONAL_RECOVERY_COST_PERCENTAGE = 35;
8852
8858
  static readonly SAILING_BOAT_STATS_MERMAID_BLESSING = 8091;
8853
8859
  static readonly SAILING_COMBAT_STATS_RUNIC_SHIELD_LOW_INACTIVE = 8092;
8854
8860
  static readonly SAILING_COMBAT_STATS_RUNIC_SHIELD_LOW_ACTIVE = 8093;
@@ -9678,6 +9684,8 @@ declare namespace net.runelite.api.gameval {
9678
9684
  static readonly COL_BOUNTY_OBJECT_RARITY = 23;
9679
9685
  static readonly COL_TASK_BOARD_GRAPHIC = 24;
9680
9686
  static readonly COL_FLAVOUR_TEXT = 25;
9687
+ static readonly PORT_TASK_RELLEKKA_COURIER_19 = 4966;
9688
+ static readonly PORT_TASK_RELLEKKA_COURIER_20 = 4967;
9681
9689
  static readonly PORT_TASK_PORT_SARIM_COURIER_0 = 8664;
9682
9690
  static readonly PORT_TASK_PORT_SARIM_COURIER_1 = 8665;
9683
9691
  static readonly PORT_TASK_PORT_SARIM_COURIER_2 = 8666;
@@ -10476,5 +10484,22 @@ declare namespace net.runelite.api.gameval {
10476
10484
  static readonly CHARTERING_DESTINATION_PORT_ROBERTS = 9453;
10477
10485
  static readonly ID = 207;
10478
10486
  static readonly CHARTERING_COSTS = 9454;
10487
+ static readonly ID = 208;
10488
+ static readonly COL_ID = 0;
10489
+ static readonly COL_COMBINED = 1;
10490
+ static readonly COL_INGREDIENTS = 2;
10491
+ static readonly PATCHY_DATA_BIG_HAT_EYEPATCH = 4970;
10492
+ static readonly PATCHY_DATA_SMALL_HAT_EYEPATCH = 5121;
10493
+ static readonly PATCHY_DATA_BANDANA_EYEPATCH_BLUE = 5122;
10494
+ static readonly PATCHY_DATA_BANDANA_EYEPATCH_BROWN = 7052;
10495
+ static readonly PATCHY_DATA_BANDANA_EYEPATCH_RED = 7067;
10496
+ static readonly PATCHY_DATA_BANDANA_EYEPATCH_WHITE = 9455;
10497
+ static readonly PATCHY_DATA_HAT_CAVALIER_MASK = 9456;
10498
+ static readonly PATCHY_DATA_DOUBLE_EYE_PATCH = 9457;
10499
+ static readonly PATCHY_DATA_HAT_BERRET_MIME_MASK = 9458;
10500
+ static readonly PATCHY_DATA_WOM_HEAD = 9459;
10501
+ static readonly PATCHY_DATA_TOPHAT_MONACLE = 9460;
10502
+ static readonly PATCHY_DATA_CRABCLAW_HOOK = 9461;
10503
+ static readonly PATCHY_DATA_DARK_FLIPPERS = 9462;
10479
10504
  }
10480
10505
  }
@@ -421,7 +421,6 @@ declare namespace net.runelite.api.gameval {
421
421
  static readonly CANOEING = 416;
422
422
  static readonly BREW_TOOLS = 417;
423
423
  static readonly BREW_WAITING_ROOM_OVERLAY = 418;
424
- static readonly PATCHY_INTERFACE = 419;
425
424
  static readonly BEEHIVE = 420;
426
425
  static readonly PVP_ARENA_STAGINGAREA_SHARELOADOUT = 421;
427
426
  static readonly POH_VIEWER = 422;
@@ -947,5 +946,8 @@ declare namespace net.runelite.api.gameval {
947
946
  static readonly PORT_TASK_INFO = 942;
948
947
  static readonly SAILING_BOAT_CARGOHOLD = 943;
949
948
  static readonly SAILING_BOAT_CARGOHOLD_SIDE = 944;
949
+ static readonly REUSABLE_FLOATER = 945;
950
+ static readonly PATCHY = 946;
951
+ static readonly MENU_NEW = 947;
950
952
  }
951
953
  }
@@ -18852,6 +18852,80 @@ declare namespace net.runelite.api.gameval {
18852
18852
  static readonly SALVAGE_TABLE_ICON_DUMMY = 32919;
18853
18853
  static readonly TRAWLING_ICON_DUMMY = 32920;
18854
18854
  static readonly JAR_OF_FEATHERS = 32921;
18855
+ static readonly ANY_NAILS = 32923;
18856
+ static readonly CARGO_CRATE_ARROWTIPS_RELLEKKA = 32924;
18857
+ static readonly CARGO_CRATE_CLOTHES_VOID_KNIGHTS_OUTPOST = 32925;
18858
+ static readonly XMAS25_SERVING_PLATTER = 32926;
18859
+ static readonly XMAS25_BIB = 32928;
18860
+ static readonly XMAS25_BEER_BELLY_SWEATER = 32930;
18861
+ static readonly XMAS25_CONTEST_JUMPER = 32932;
18862
+ static readonly XMAS25_CHRISTMAS_DINNER = 32934;
18863
+ static readonly CARGO_CRATE_FURS_ALDARIN_1 = 32936;
18864
+ static readonly CARGO_CRATE_FISH_ARDOUGNE_1 = 32937;
18865
+ static readonly CARGO_CRATE_FISH_ARDOUGNE_2 = 32938;
18866
+ static readonly CARGO_CRATE_FISH_ARDOUGNE_3 = 32939;
18867
+ static readonly CARGO_CRATE_SAND_ARDOUGNE_1 = 32940;
18868
+ static readonly CARGO_CRATE_RED_CORAL_ARDOUGNE_1 = 32941;
18869
+ static readonly CARGO_CRATE_FISH_BRIMHAVEN_1 = 32942;
18870
+ static readonly CARGO_CRATE_SPICES_BRIMHAVEN_1 = 32943;
18871
+ static readonly CARGO_CRATE_JEWELLERY_BRIMHAVEN_1 = 32944;
18872
+ static readonly CARGO_CRATE_BAIT_CATHERBY_1 = 32945;
18873
+ static readonly CARGO_CRATE_COCONUTS_CATHERBY_1 = 32946;
18874
+ static readonly CARGO_CRATE_ARROWTIPS_CATHERBY_1 = 32947;
18875
+ static readonly CARGO_CRATE_PINEAPPLES_CIVITAS_ILLA_FORTIS_1 = 32948;
18876
+ static readonly CARGO_CRATE_LOGS_DEEPFIN_POINT_1 = 32949;
18877
+ static readonly CARGO_CRATE_PLANKS_DEEPFIN_POINT_1 = 32950;
18878
+ static readonly CARGO_CRATE_LOGS_DEEPFIN_POINT_2 = 32951;
18879
+ static readonly CARGO_CRATE_ALPACA_WOOL_DEEPFIN_POINT_1 = 32952;
18880
+ static readonly CARGO_CRATE_PLANKS_DEEPFIN_POINT_2 = 32953;
18881
+ static readonly CARGO_CRATE_FABRICS_DEEPFIN_POINT_1 = 32954;
18882
+ static readonly CARGO_CRATE_PLANKS_DEEPFIN_POINT_3 = 32955;
18883
+ static readonly CARGO_CRATE_LOGS_DEEPFIN_POINT_3 = 32956;
18884
+ static readonly CARGO_CRATE_PLANKS_DEEPFIN_POINT_4 = 32957;
18885
+ static readonly CARGO_CRATE_FISH_LANDS_END_1 = 32958;
18886
+ static readonly CARGO_CRATE_FISH_LANDS_END_2 = 32959;
18887
+ static readonly CARGO_CRATE_GEMS_LANDS_END_1 = 32960;
18888
+ static readonly CARGO_CRATE_FISH_LUNAR_ISLE_1 = 32961;
18889
+ static readonly CARGO_CRATE_FISH_LUNAR_ISLE_2 = 32962;
18890
+ static readonly CARGO_CRATE_POTIONS_LUNAR_ISLE_1 = 32963;
18891
+ static readonly CARGO_CRATE_FURS_PISCATORIS_1 = 32964;
18892
+ static readonly CARGO_CRATE_SWAMP_PASTE_PORT_KHAZARD_1 = 32965;
18893
+ static readonly CARGO_CRATE_PLANKS_PORT_PISCARILIUS_1 = 32966;
18894
+ static readonly CARGO_CRATE_BOOKS_PORT_PISCARILIUS_1 = 32967;
18895
+ static readonly CARGO_CRATE_BOOKS_PORT_PISCARILIUS_2 = 32968;
18896
+ static readonly CARGO_CRATE_JEWELLERY_PORT_PISCARILIUS_1 = 32969;
18897
+ static readonly CARGO_CRATE_JEWELLERY_PORT_PISCARILIUS_2 = 32970;
18898
+ static readonly CARGO_CRATE_PLANKS_PORT_PISCARILIUS_2 = 32971;
18899
+ static readonly CARGO_CRATE_FURS_PORT_PISCARILIUS_1 = 32972;
18900
+ static readonly CARGO_CRATE_FISH_PORT_ROBERTS_1 = 32973;
18901
+ static readonly CARGO_CRATE_FISH_PORT_ROBERTS_2 = 32974;
18902
+ static readonly CARGO_CRATE_SILK_PORT_ROBERTS_1 = 32975;
18903
+ static readonly CARGO_CRATE_FISH_PORT_ROBERTS_3 = 32976;
18904
+ static readonly CARGO_CRATE_LOGS_PORT_SARIM_1 = 32977;
18905
+ static readonly CARGO_CRATE_SWORDS_PORT_SARIM_1 = 32978;
18906
+ static readonly CARGO_CRATE_FISH_PORT_SARIM_1 = 32979;
18907
+ static readonly CARGO_CRATE_FISH_PORT_SARIM_2 = 32980;
18908
+ static readonly CARGO_CRATE_SEEDS_PORT_SARIM_1 = 32981;
18909
+ static readonly CARGO_CRATE_SWORDS_PORT_TYRAS_1 = 32982;
18910
+ static readonly CARGO_CRATE_PLATEBODIES_PORT_TYRAS_1 = 32983;
18911
+ static readonly CARGO_CRATE_SWORDS_PORT_TYRAS_2 = 32984;
18912
+ static readonly CARGO_CRATE_ORES_PORT_TYRAS_1 = 32985;
18913
+ static readonly CARGO_CRATE_LOGS_PRIFDDINAS_1 = 32986;
18914
+ static readonly CARGO_CRATE_POTIONS_PRIFDDINAS_1 = 32987;
18915
+ static readonly CARGO_CRATE_FISH_RED_ROCK_1 = 32988;
18916
+ static readonly CARGO_CRATE_FISH_RED_ROCK_2 = 32989;
18917
+ static readonly CARGO_CRATE_RUNES_RED_ROCK_1 = 32990;
18918
+ static readonly CARGO_CRATE_FISH_RED_ROCK_3 = 32991;
18919
+ static readonly CARGO_CRATE_PLANKS_RELLEKKA_1 = 32992;
18920
+ static readonly CARGO_CRATE_TEAK_LOGS_RELLEKKA_1 = 32993;
18921
+ static readonly CARGO_CRATE_RUNES_RUINS_OF_UNKAH_1 = 32994;
18922
+ static readonly CARGO_CRATE_COCKTAILS_RUINS_OF_UNKAH_1 = 32995;
18923
+ static readonly CARGO_CRATE_SHIP_PARTS_RUINS_OF_UNKAH_1 = 32996;
18924
+ static readonly CARGO_CRATE_RUM_THE_PANDEMONIUM_1 = 32997;
18925
+ static readonly CARGO_CRATE_JAVELINS_THE_SUMMER_SHORE_1 = 32998;
18926
+ static readonly CARGO_CRATE_POTIONS_VOID_KNIGHTS_OUTPOST_1 = 32999;
18927
+ static readonly CARGO_CRATE_ORES_VOID_KNIGHTS_OUTPOST_1 = 33000;
18928
+ static readonly CARGO_CRATE_POTIONS_VOID_KNIGHTS_OUTPOST_2 = 33001;
18855
18929
  static readonly TWPART1 = 7;
18856
18930
  static readonly TWPART2 = 9;
18857
18931
  static readonly TWPART3 = 11;
@@ -32925,5 +32999,10 @@ declare namespace net.runelite.api.gameval {
32925
32999
  static readonly IRONWOOD_LOGS = 32909;
32926
33000
  static readonly ROSEWOOD_LOGS = 32912;
32927
33001
  static readonly JAR_OF_FEATHERS = 32922;
33002
+ static readonly XMAS25_SERVING_PLATTER = 32927;
33003
+ static readonly XMAS25_BIB = 32929;
33004
+ static readonly XMAS25_BEER_BELLY_SWEATER = 32931;
33005
+ static readonly XMAS25_CONTEST_JUMPER = 32933;
33006
+ static readonly XMAS25_CHRISTMAS_DINNER = 32935;
32928
33007
  }
32929
33008
  }
@@ -14816,6 +14816,7 @@ declare namespace net.runelite.api.gameval {
14816
14816
  static readonly RUSTY_PIRATE_THIEVING_CHEST_GLE = 14811;
14817
14817
  static readonly TARNISHED_PIRATE_THIEVING_CHEST_GLE = 14812;
14818
14818
  static readonly REINFORCED_PIRATE_THIEVING_CHEST_GLE = 14813;
14819
+ static readonly XMAS25_QUEUE_NPC_1 = 14814;
14819
14820
  static readonly POH_HW_CHAIR = 14815;
14820
14821
  static readonly BARRACUDA_MAKO = 14816;
14821
14822
  static readonly BARRACUDA_MORA = 14817;
@@ -14865,6 +14866,8 @@ declare namespace net.runelite.api.gameval {
14865
14866
  static readonly SLAYER_GRYPHON_GUARDIAN = 14861;
14866
14867
  static readonly SLAYER_GRYPHON_BOSS_GUARDIAN = 14862;
14867
14868
  static readonly SLAYER_GRYPHON_BOSS_GUARDIAN_VIS = 14863;
14869
+ static readonly XMAS25_QUEUE_NPC_2 = 14864;
14870
+ static readonly XMAS25_QUEUE_NPC_3 = 14865;
14868
14871
  static readonly PANDEMONIUM_FISHMONGER = 14866;
14869
14872
  static readonly PANDEMONIUM_ROSALEE = 14867;
14870
14873
  static readonly PANDEMONIUM_DAWSON = 14868;
@@ -15177,6 +15180,14 @@ declare namespace net.runelite.api.gameval {
15177
15180
  static readonly SAILING_CHARTING_DRINK_CRATE_MONKFISH_STOUT_EFFECT = 15175;
15178
15181
  static readonly SAILING_CHARTING_DRINK_CRATE_MONKFISH_STOUT_EFFECT_DEAD = 15176;
15179
15182
  static readonly SAILING_CHARTING_DRINK_CRATE_SAILING_CAT_EFFECT = 15177;
15183
+ static readonly XMAS25_QUEUE_NPC_4 = 15178;
15184
+ static readonly XMAS25_QUEUE_NPC_5 = 15179;
15185
+ static readonly XMAS25_QUEUE_NPC_6 = 15180;
15186
+ static readonly XMAS25_QUEUE_NPC_7 = 15181;
15187
+ static readonly XMAS25_QUEUE_NPC_8 = 15182;
15188
+ static readonly XMAS25_QUEUE_NPC_9 = 15183;
15189
+ static readonly XMAS25_TABLE_NPC_1 = 15184;
15190
+ static readonly XMAS25_TABLE_NPC_2 = 15185;
15180
15191
  static readonly BOAT_HP_NPC_TINY = 15186;
15181
15192
  static readonly BOAT_HP_NPC_SMALL = 15187;
15182
15193
  static readonly BOAT_HP_NPC_MEDIUM = 15188;
@@ -15228,6 +15239,7 @@ declare namespace net.runelite.api.gameval {
15228
15239
  static readonly SAILING_DOLPHIN = 15234;
15229
15240
  static readonly SAILING_DOLPHIN_DEAD = 15235;
15230
15241
  static readonly SAILING_DOLPHIN_BABY = 15236;
15242
+ static readonly XMAS25_TABLE_NPC_3 = 15237;
15231
15243
  static readonly SAILING_ASSISTANT_LIMBO = 15238;
15232
15244
  static readonly JUMBO_JIM = 15239;
15233
15245
  static readonly SAILING_EMOTE_NPC = 15240;
@@ -15537,5 +15549,25 @@ declare namespace net.runelite.api.gameval {
15537
15549
  static readonly SAILING_TRANSPORT_TRADER_STAN_CREW_WOMAN1_PORT_ROBERTS = 15544;
15538
15550
  static readonly SAILING_TRANSPORT_TRADER_STAN_CREW_WOMAN2_PORT_ROBERTS = 15545;
15539
15551
  static readonly SAILING_TRANSPORT_TRADER_STAN_CREW_WOMAN3_PORT_ROBERTS = 15546;
15552
+ static readonly XMAS25_TABLE_NPC_4 = 15547;
15553
+ static readonly XMAS25_STOOL_EMPTY = 15548;
15554
+ static readonly XMAS25_SIR_PRYSIN = 15549;
15555
+ static readonly XMAS25_AGGIE = 15550;
15556
+ static readonly XMAS25_JOBLESS_JIM = 15551;
15557
+ static readonly XMAS25_HANS = 15552;
15558
+ static readonly XMAS25_KARIM = 15553;
15559
+ static readonly XMAS25_OZIACH = 15554;
15560
+ static readonly XMAS25_ROMMIK = 15555;
15561
+ static readonly XMAS25_DORIS = 15556;
15562
+ static readonly XMAS25_HERQUIN = 15557;
15563
+ static readonly XMAS25_PUFFIN = 15558;
15564
+ static readonly XMAS25_CUTSCENE_CHEF_WITH_PLATE = 15559;
15565
+ static readonly XMAS25_CUTSCENE_CHEF_NO_PLATE = 15560;
15566
+ static readonly XMAS25_CUTSCENE_BARTENDER = 15561;
15567
+ static readonly XMAS25_CUTSCENE_WOMAN1 = 15562;
15568
+ static readonly XMAS25_CUTSCENE_JONNY = 15563;
15569
+ static readonly XMAS25_CUTSCENE_DR_HARLOW = 15564;
15570
+ static readonly XMAS25_CUTSCENE_BARBARIAN = 15565;
15571
+ static readonly XMAS25_CUTSCENE_FREDDIE = 15566;
15540
15572
  }
15541
15573
  }
@@ -26529,6 +26529,7 @@ declare namespace net.runelite.api.gameval {
26529
26529
  static readonly CAVEKIT_SNOW03_DEFAULT01_DARK02_WALLTOP = 58524;
26530
26530
  static readonly TOA_ZEBAK_BUBBLES_BLUE = 58525;
26531
26531
  static readonly BGSOUND_SAILING_OCEAN_WATER_LOOP_01 = 58526;
26532
+ static readonly CASTLEARROWSLIT_OFFSET = 58527;
26532
26533
  static readonly BGSOUND_SAILING_COOKING_LOOP_2 = 58528;
26533
26534
  static readonly BGSOUND_SAILING_NORTHERN_OCEAN_WIND_LOOP = 58529;
26534
26535
  static readonly BGSOUND_SAILING_CLOCK = 58530;
@@ -26926,6 +26927,7 @@ declare namespace net.runelite.api.gameval {
26926
26927
  static readonly RUBIUMDEPOSIT1_EMPTY = 58922;
26927
26928
  static readonly NICKELROCK1 = 58923;
26928
26929
  static readonly NICKELROCK1_EMPTY = 58924;
26930
+ static readonly CABINET_OFFSET1 = 58925;
26929
26931
  static readonly SAILING_BT_SCOREBOARD_TEMPOR_TANTRUM = 58926;
26930
26932
  static readonly SAILING_BT_SCOREBOARD_JUBBLY_JIVE = 58927;
26931
26933
  static readonly SAILING_BT_SCOREBOARD_GWENITH_GLIDE = 58928;
@@ -27552,6 +27554,7 @@ declare namespace net.runelite.api.gameval {
27552
27554
  static readonly SAILING_BOAT_SAIL_KANDARIN_3X8_IRONWOOD = 59549;
27553
27555
  static readonly SAILING_BOAT_SAIL_KANDARIN_3X8_ROSEWOOD = 59550;
27554
27556
  static readonly SAILING_BOAT_SAILS_COLOSSAL_REGULAR = 59551;
27557
+ static readonly GRIMSTONE_CAVE_WALL_UPPER_CREVICE = 59552;
27555
27558
  static readonly SAILING_BOAT_SAILS_INTRO = 59553;
27556
27559
  static readonly SAILING_BOAT_STEERING_KANDARIN_1X3_WOOD = 59554;
27557
27560
  static readonly SAILING_BOAT_STEERING_KANDARIN_1X3_WOOD_IN_USE = 59555;
@@ -28575,5 +28578,49 @@ declare namespace net.runelite.api.gameval {
28575
28578
  static readonly SAILING_SHRIMP_RARE = 60573;
28576
28579
  static readonly SAILING_CLUE_TURTLE = 60574;
28577
28580
  static readonly HAZARDOUS_WATER_PROFANE_GHOST = 60575;
28581
+ static readonly XMAS25_TABLE01_EMPTY01 = 60576;
28582
+ static readonly XMAS25_TABLE01_EMPTY01_OP1 = 60577;
28583
+ static readonly XMAS25_TABLE01_DRINK01 = 60578;
28584
+ static readonly XMAS25_TABLE01_FOOD01 = 60579;
28585
+ static readonly XMAS25_TABLE01_VEGETABLE01 = 60580;
28586
+ static readonly XMAS25_TABLE_1 = 60581;
28587
+ static readonly XMAS25_TABLE_2 = 60582;
28588
+ static readonly XMAS25_TABLE_3 = 60583;
28589
+ static readonly XMAS25_TABLE_4 = 60584;
28590
+ static readonly XMAS25_BLUE_INN_DRINKS_BAR_MIDDLE = 60585;
28591
+ static readonly XMAS25_BLUE_INN_DRINKS_BAR_MIDDLE_INTERACT = 60586;
28592
+ static readonly XMAS25_BLUE_INN_DRINKS_BAR_MIDDLE2 = 60587;
28593
+ static readonly XMAS25_BLUE_INN_DRINKS_BAR_MIDDLE2_INTERACT = 60588;
28594
+ static readonly XMAS25_BLUE_INN_DRINKS_BAR_LEFT = 60589;
28595
+ static readonly XMAS25_BLUE_INN_DRINKS_BAR_LEFT_INTERACT = 60590;
28596
+ static readonly XMAS25_BLUE_INN_DRINKS_BAR_RIGHT = 60591;
28597
+ static readonly XMAS25_BLUE_INN_DRINKS_BAR_RIGHT_INTERACT = 60592;
28598
+ static readonly XMAS25_BLUE_INN_BAR_MIDDLE = 60593;
28599
+ static readonly XMAS25_BLUE_INN_BAR_MIDDLE_INTERACT = 60594;
28600
+ static readonly XMAS25_BLUE_INN_BAR_MIDDLE2 = 60595;
28601
+ static readonly XMAS25_BLUE_INN_BAR_MIDDLE2_INTERACT = 60596;
28602
+ static readonly XMAS25_BLUE_INN_BAR_MIDDLE3 = 60597;
28603
+ static readonly XMAS25_BLUE_INN_BAR_MIDDLE3_INTERACT = 60598;
28604
+ static readonly XMAS25_BLUE_INN_BAR_LEFT = 60599;
28605
+ static readonly XMAS25_BLUE_INN_BAR_RIGHT = 60600;
28606
+ static readonly XMAS25_BAR_DRINKS_MIDDLE = 60601;
28607
+ static readonly XMAS25_BAR_DRINKS_MIDDLE2 = 60602;
28608
+ static readonly XMAS25_BAR_DRINKS_LEFT = 60603;
28609
+ static readonly XMAS25_BAR_DRINKS_RIGHT = 60604;
28610
+ static readonly XMAS25_BAR_MIDDLE = 60605;
28611
+ static readonly XMAS25_BAR_MIDDLE2 = 60606;
28612
+ static readonly XMAS25_BAR_MIDDLE3 = 60607;
28613
+ static readonly XMAS25_CRATE01_CARROT01 = 60608;
28614
+ static readonly XMAS25_CRATE01_TOMATO01 = 60609;
28615
+ static readonly XMAS25_CRATE01_VEGETABLE01 = 60610;
28616
+ static readonly XMAS25_CRATE01_BROCCOLI01 = 60611;
28617
+ static readonly XMAS25_CRATE01_FRUIT01 = 60612;
28618
+ static readonly XMAS25_CRATE01_FISH01 = 60613;
28619
+ static readonly XMAS25_CRATE01_MEAT01 = 60614;
28620
+ static readonly XMAS22_DECORATION_HOLLYWREATH01_WALL01 = 60615;
28621
+ static readonly XMAS25_SNOWBALL_PILE = 60616;
28622
+ static readonly AGILITY_ONEWAY_RIGHT_ICON = 60617;
28623
+ static readonly AGILITY_ONEWAY_LEFT_ICON = 60618;
28624
+ static readonly POH_DISPLAY_GRYPHON = 60619;
28578
28625
  }
28579
28626
  }
@@ -2743,6 +2743,13 @@ declare namespace net.runelite.api.gameval {
2743
2743
  static readonly _144 = 7285;
2744
2744
  static readonly _145 = 7286;
2745
2745
  static readonly _146 = 7287;
2746
+ static readonly _147 = 7311;
2747
+ static readonly _148 = 7312;
2748
+ static readonly _149 = 7313;
2749
+ static readonly _150 = 7314;
2750
+ static readonly _151 = 7315;
2751
+ static readonly _152 = 7316;
2752
+ static readonly _153 = 7317;
2746
2753
  static readonly _0 = 1539;
2747
2754
  static readonly _1 = 1540;
2748
2755
  static readonly _2 = 1541;
@@ -1345,5 +1345,7 @@ declare namespace net.runelite.api.gameval {
1345
1345
  static readonly CAMERA_ZOOM_BIG_MIN = 1340;
1346
1346
  static readonly CAMERA_ZOOM_BIG_MAX = 1341;
1347
1347
  static readonly SAILING_LAST_BOAT_HP = 1342;
1348
+ static readonly SETTINGS_DEV_EXAMPLE_INT = 1343;
1349
+ static readonly FAIRYRINGS_SEARCHSTRING = 1344;
1348
1350
  }
1349
1351
  }
@@ -2580,5 +2580,10 @@ declare namespace net.runelite.api.gameval {
2580
2580
  static readonly SAILING_BOAT_CARGOHOLD_SIDE_WHITELIST = 5205;
2581
2581
  static readonly PORT_TASKS_COMPLETED = 5207;
2582
2582
  static readonly SAILING_SHIPWRECK_RAREITEMS = 5208;
2583
+ static readonly XMAS_25_1 = 5214;
2584
+ static readonly XMAS_25_2 = 5215;
2585
+ static readonly XMAS_25_3 = 5216;
2586
+ static readonly COLLECTION_PERSONAL_BEST_TRANSMIT = 5217;
2587
+ static readonly COLLECTION_PERSONAL_BEST_TRANSMIT_2 = 5218;
2583
2588
  }
2584
2589
  }
@@ -11120,6 +11120,7 @@ declare namespace net.runelite.api.gameval {
11120
11120
  static readonly SETTINGS_HD_NEW_RENDERER_TOGGLE = 16617;
11121
11121
  static readonly SETTINGS_HD_WARNING_SHOWN = 16618;
11122
11122
  static readonly SETTINGS_SD_BETA_ENABLED = 16619;
11123
+ static readonly SAILING_WARNING_TELEPORTOFFBOAT = 16620;
11123
11124
  static readonly SETTINGS_WORLD_MAP_HOTKEY_DISABLED = 16621;
11124
11125
  static readonly CHARGES_EYE_OF_AYAK_QUANTITY = 16623;
11125
11126
  static readonly PMOON_EYATLALLI_VIS = 16624;
@@ -13839,5 +13840,40 @@ declare namespace net.runelite.api.gameval {
13839
13840
  static readonly SAILING_CREW_GHOST_JENKINS_VISIBILITY_CRANDOR = 19610;
13840
13841
  static readonly SETTINGS_IRONMAN_CARGO_WARNING_TEMP = 19612;
13841
13842
  static readonly SAILING_CREW_GHOST_JENKINS_VISIBILITY_CONTROL = 19613;
13843
+ static readonly SETTINGS_CARGO_HOLD_PRIVACY = 19614;
13844
+ static readonly SETTINGS_NEW_MENU_INTERFACE = 19615;
13845
+ static readonly BOAT_REPAIR_COST_WARNING_DISMISSED = 19616;
13846
+ static readonly XMAS_25_MAIN = 19618;
13847
+ static readonly XMAS_25_NPC_QUEUE = 19619;
13848
+ static readonly XMAS_25_SEAT_ID_1 = 19620;
13849
+ static readonly XMAS_25_SEAT_ID_2 = 19621;
13850
+ static readonly XMAS_25_SEAT_ID_3 = 19622;
13851
+ static readonly XMAS_25_SEAT_ID_4 = 19623;
13852
+ static readonly XMAS25_CURRENT_TABLE = 19624;
13853
+ static readonly XMAS25_FOOD_CORRECT_MAIN = 19625;
13854
+ static readonly XMAS25_FOOD_CORRECT_SIDE_1 = 19626;
13855
+ static readonly XMAS_25_TABLE_ID_1 = 19627;
13856
+ static readonly XMAS_25_TABLE_ID_2 = 19628;
13857
+ static readonly XMAS_25_TABLE_ID_3 = 19629;
13858
+ static readonly XMAS_25_TABLE_ID_4 = 19630;
13859
+ static readonly XMAS_25_BAR_INTERACTABLE = 19631;
13860
+ static readonly XMAS_25_BAR_DRINKS = 19632;
13861
+ static readonly XMAS_25_BAR_CORRECT_DRINK = 19633;
13862
+ static readonly XMAS25_TABLE_1_STATE = 19634;
13863
+ static readonly XMAS25_TABLE_2_STATE = 19635;
13864
+ static readonly XMAS25_TABLE_3_STATE = 19636;
13865
+ static readonly XMAS25_TABLE_4_STATE = 19637;
13866
+ static readonly XMAS25_FOOD_CORRECT_SIDE_2 = 19638;
13867
+ static readonly XMAS25_FOOD_CORRECT_SIDE_3 = 19639;
13868
+ static readonly XMAS25_FOOD_MAIN = 19640;
13869
+ static readonly XMAS25_FOOD_SIDE_1 = 19641;
13870
+ static readonly XMAS25_FOOD_SIDE_2 = 19642;
13871
+ static readonly XMAS25_FOOD_SIDE_3 = 19643;
13872
+ static readonly SAILING_UNEXPECTED_INPUT_LOGGED = 19645;
13873
+ static readonly SETTINGS_NEW_MENU_TRANSPARENT_INTERFACE_DISABLED = 19646;
13874
+ static readonly SETTINGS_RUNEPOUCH_LOADOUT_NAMES_DISABLED = 19647;
13875
+ static readonly SETTINGS_FAIRYRING_MOBILE_KEYBOARD_AUTOOPEN_DISABLED = 19648;
13876
+ static readonly MY2ARM_STRONGHOLD_TELE_TOGGLE = 19649;
13877
+ static readonly SAILING_SIDEPANEL_BOAT_CRYSTALHELM_RESISTANCE = 19652;
13842
13878
  }
13843
13879
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deafwave/osrs-botmaker-types",
3
- "version": "0.7.4",
3
+ "version": "0.7.13",
4
4
  "author": {
5
5
  "name": "Chandler Ferry",
6
6
  "url": "https://github.com/ChandlerFerry"
@@ -8,7 +8,20 @@
8
8
  "description": "Typescript Types for Sox's Botmaker",
9
9
  "license": "Apache-2.0",
10
10
  "type": "module",
11
- "contributors": [],
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/deafwave/osrs-botmaker-types"
14
+ },
15
+ "contributors": [
16
+ {
17
+ "name": "jbiskit",
18
+ "url": "https://github.com/jbiskit"
19
+ },
20
+ {
21
+ "name": "CodySimonds65",
22
+ "url": "https://github.com/CodySimonds65"
23
+ }
24
+ ],
12
25
  "publishConfig": {
13
26
  "access": "public",
14
27
  "registry": "https://registry.npmjs.org"