@deafwave/osrs-botmaker-types 0.3.1 → 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
@@ -3,2169 +3,460 @@
3
3
  // From runelite-api/target/generated-sources/net/runelite/api/widgets/ComponentID.java
4
4
  declare namespace net.runelite.api.widgets {
5
5
  export class ComponentID {
6
- /**
7
- * 259:2
8
- */
9
6
  static readonly ACHIEVEMENT_DIARY_CONTAINER = 16973826;
10
-
11
- /**
12
- * 741:2
13
- */
14
7
  static readonly ACHIEVEMENT_DIARY_SCROLL_TITLE = 48562178;
15
-
16
- /**
17
- * 741:3
18
- */
19
8
  static readonly ACHIEVEMENT_DIARY_SCROLL_TEXT = 48562179;
20
-
21
- /**
22
- * 187:0
23
- */
24
9
  static readonly ADVENTURE_LOG_CONTAINER = 12255232;
25
-
26
- /**
27
- * 5:2
28
- */
10
+ static readonly ADVENTURE_LOG_OPTIONS = 12255235;
29
11
  static readonly AGILITY_ARENA_LIGHT_INDICATOR = 327682;
30
-
31
- /**
32
- * 485:11
33
- */
34
12
  static readonly BA_ATTACKER_ROLE_SPRITE = 31784971;
35
-
36
- /**
37
- * 485:12
38
- */
39
13
  static readonly BA_ATTACKER_ROLE = 31784972;
40
-
41
- /**
42
- * 486:10
43
- */
44
14
  static readonly BA_COLLECTOR_ROLE_SPRITE = 31850506;
45
-
46
- /**
47
- * 486:11
48
- */
49
15
  static readonly BA_COLLECTOR_ROLE = 31850507;
50
-
51
- /**
52
- * 487:10
53
- */
54
16
  static readonly BA_DEFENDER_ROLE_SPRITE = 31916042;
55
-
56
- /**
57
- * 487:11
58
- */
59
17
  static readonly BA_DEFENDER_ROLE = 31916043;
60
-
61
- /**
62
- * 488:10
63
- */
64
18
  static readonly BA_HEALER_ROLE_SPRITE = 31981578;
65
-
66
- /**
67
- * 488:11
68
- */
69
19
  static readonly BA_HEALER_ROLE = 31981579;
70
-
71
- /**
72
- * 488:13
73
- */
74
20
  static readonly BA_HEALER_TEAMMATES = 31981581;
75
-
76
- /**
77
- * 488:18
78
- */
79
21
  static readonly BA_HEALER_TEAMMATE1 = 31981586;
80
-
81
- /**
82
- * 488:22
83
- */
84
22
  static readonly BA_HEALER_TEAMMATE2 = 31981590;
85
-
86
- /**
87
- * 488:26
88
- */
89
23
  static readonly BA_HEALER_TEAMMATE3 = 31981594;
90
-
91
- /**
92
- * 488:30
93
- */
94
24
  static readonly BA_HEALER_TEAMMATE4 = 31981598;
95
-
96
- /**
97
- * 497:57
98
- */
99
25
  static readonly BA_REWARD_REWARD_TEXT = 32571449;
100
-
101
- /**
102
- * 256:2
103
- */
104
26
  static readonly BA_TEAM_TEAM = 16777218;
105
-
106
- /**
107
- * 12:1
108
- */
109
27
  static readonly BANK_CONTAINER = 786433;
110
-
111
- /**
112
- * 12:3
113
- */
114
28
  static readonly BANK_TITLE_BAR = 786435;
115
-
116
- /**
117
- * 12:4
118
- */
119
29
  static readonly BANK_TUTORIAL_BUTTON = 786436;
120
-
121
- /**
122
- * 12:5
123
- */
124
30
  static readonly BANK_ITEM_COUNT_TOP = 786437;
125
-
126
- /**
127
- * 12:6
128
- */
129
31
  static readonly BANK_ITEM_COUNT_BAR = 786438;
130
-
131
- /**
132
- * 12:7
133
- */
134
32
  static readonly BANK_ITEM_COUNT_BOTTOM = 786439;
135
-
136
- /**
137
- * 12:8
138
- */
139
33
  static readonly BANK_GROUP_STORAGE_BUTTON = 786440;
140
-
141
- /**
142
- * 12:10
143
- */
144
34
  static readonly BANK_CONTENT_CONTAINER = 786442;
145
-
146
- /**
147
- * 12:11
148
- */
149
35
  static readonly BANK_TAB_CONTAINER = 786443;
150
-
151
- /**
152
- * 12:13
153
- */
154
36
  static readonly BANK_ITEM_CONTAINER = 786445;
155
-
156
- /**
157
- * 12:14
158
- */
159
37
  static readonly BANK_SCROLLBAR = 786446;
160
-
161
- /**
162
- * 12:40
163
- */
164
- static readonly BANK_SEARCH_BUTTON_BACKGROUND = 786472;
165
-
166
- /**
167
- * 12:42
168
- */
169
- static readonly BANK_DEPOSIT_INVENTORY = 786474;
170
-
171
- /**
172
- * 12:44
173
- */
174
- static readonly BANK_DEPOSIT_EQUIPMENT = 786476;
175
-
176
- /**
177
- * 12:46
178
- */
179
- static readonly BANK_INCINERATOR = 786478;
180
-
181
- /**
182
- * 12:47
183
- */
184
- static readonly BANK_INCINERATOR_CONFIRM = 786479;
185
-
186
- /**
187
- * 12:69
188
- */
189
- static readonly BANK_EQUIPMENT_CONTENT_CONTAINER = 786501;
190
-
191
- /**
192
- * 12:113
193
- */
194
- static readonly BANK_SETTINGS_BUTTON = 786545;
195
-
196
- /**
197
- * 12:114
198
- */
199
- static readonly BANK_EQUIPMENT_BUTTON = 786546;
200
-
201
- /**
202
- * 12:116
203
- */
204
- static readonly BANK_POPUP = 786548;
205
-
206
- /**
207
- * 12:69
208
- */
209
- static readonly BANK_EQUIPMENT_PARENT = 786501;
210
-
211
- /**
212
- * 12:109
213
- */
214
- static readonly BANK_EQUIPMENT_SET_BONUS = 786541;
215
-
216
- /**
217
- * 12:121
218
- */
219
- static readonly BANK_EQUIPMENT_STAT_BONUS = 786553;
220
-
221
- /**
222
- * 15:3
223
- */
38
+ static readonly BANK_SEARCH_BUTTON_BACKGROUND = 786474;
39
+ static readonly BANK_DEPOSIT_INVENTORY = 786476;
40
+ static readonly BANK_DEPOSIT_EQUIPMENT = 786478;
41
+ static readonly BANK_POTION_STORE = 786480;
42
+ static readonly BANK_INCINERATOR = 786481;
43
+ static readonly BANK_INCINERATOR_CONFIRM = 786482;
44
+ static readonly BANK_POTIONSTORE_CONTENT = 786484;
45
+ static readonly BANK_EQUIPMENT_PARENT = 786511;
46
+ static readonly BANK_EQUIPMENT_SET_BONUS = 786552;
47
+ static readonly BANK_SETTINGS_BUTTON = 786556;
48
+ static readonly BANK_EQUIPMENT_BUTTON = 786557;
49
+ static readonly BANK_POPUP = 786559;
50
+ static readonly BANK_EQUIPMENT_STAT_BONUS = 786565;
224
51
  static readonly BANK_INVENTORY_ITEM_CONTAINER = 983043;
225
-
226
- /**
227
- * 15:4
228
- */
229
52
  static readonly BANK_INVENTORY_EQUIPMENT_ITEM_CONTAINER = 983044;
230
-
231
- /**
232
- * 213:0
233
- */
234
53
  static readonly BANK_PIN_CONTAINER = 13959168;
235
-
236
- /**
237
- * 24:4
238
- */
239
54
  static readonly BARROWS_BROTHERS = 1572868;
240
-
241
- /**
242
- * 24:5
243
- */
244
55
  static readonly BARROWS_POTENTIAL = 1572869;
245
-
246
- /**
247
- * 25:0
248
- */
249
56
  static readonly BARROWS_PUZZLE_PARENT = 1638400;
250
-
251
- /**
252
- * 25:3
253
- */
254
57
  static readonly BARROWS_PUZZLE_SEQUENCE_1 = 1638403;
255
-
256
- /**
257
- * 25:12
258
- */
259
58
  static readonly BARROWS_PUZZLE_ANSWER1_CONTAINER = 1638412;
260
-
261
- /**
262
- * 25:13
263
- */
264
59
  static readonly BARROWS_PUZZLE_ANSWER1 = 1638413;
265
-
266
- /**
267
- * 25:14
268
- */
269
60
  static readonly BARROWS_PUZZLE_ANSWER2_CONTAINER = 1638414;
270
-
271
- /**
272
- * 25:15
273
- */
274
61
  static readonly BARROWS_PUZZLE_ANSWER2 = 1638415;
275
-
276
- /**
277
- * 25:16
278
- */
279
62
  static readonly BARROWS_PUZZLE_ANSWER3_CONTAINER = 1638416;
280
-
281
- /**
282
- * 25:17
283
- */
284
63
  static readonly BARROWS_PUZZLE_ANSWER3 = 1638417;
285
-
286
- /**
287
- * 34:2
288
- */
289
64
  static readonly BGR_RANK_DRAUGHTS_DISPLAY = 2228226;
290
-
291
- /**
292
- * 38:2
293
- */
294
65
  static readonly BGR_RANK_RUNELINK_DISPLAY = 2490370;
295
-
296
- /**
297
- * 42:2
298
- */
299
66
  static readonly BGR_RANK_RUNESQUARES_DISPLAY = 2752514;
300
-
301
- /**
302
- * 46:2
303
- */
304
67
  static readonly BGR_RANK_RUNEVERSI_DISPLAY = 3014658;
305
-
306
- /**
307
- * 474:2
308
- */
309
68
  static readonly BLAST_FURNACE_COFFER = 31064066;
310
-
311
- /**
312
- * 598:2
313
- */
314
69
  static readonly BLAST_MINE_CONTAINER = 39190530;
315
-
316
- /**
317
- * 271:6
318
- */
70
+ static readonly CASTLEWARS_LOBBY_TIME_REMAINING = 8585218;
71
+ static readonly CASTLEWARS_SARADOMIN_CASTLE_AND_ROCK_GROUP_STATUS = 3801091;
72
+ static readonly CASTLEWARS_SARADOMIN_GAME_TIMER = 3801104;
73
+ static readonly CASTLEWARS_SARADOMIN_SCORE_BOX = 3801106;
74
+ static readonly CASTLEWARS_SARADOMIN_LEAVE_WAITING_ROOM = 3801112;
75
+ static readonly CASTLEWARS_ZAMORAK_CASTLE_AND_ROCK_GROUP_STATUS = 3866627;
76
+ static readonly CASTLEWARS_ZAMORAK_SCORE_BOX = 3866641;
77
+ static readonly CASTLEWARS_ZAMORAK_LEAVE_WAITING_ROOM = 3866647;
78
+ static readonly CASTLEWARS_ZAMORAK_GAME_TIMER = 3866650;
319
79
  static readonly CHAMBERS_OF_XERIC_STORAGE_UNIT_PRIVATE_ITEM_CONTAINER = 17760262;
320
-
321
- /**
322
- * 712:2
323
- */
324
80
  static readonly CHARACTER_SUMMARY_CONTAINER = 46661634;
325
-
326
- /**
327
- * 162:0
328
- */
329
81
  static readonly CHATBOX_PARENT = 10616832;
330
-
331
- /**
332
- * 162:1
333
- */
334
82
  static readonly CHATBOX_BUTTONS = 10616833;
335
-
336
- /**
337
- * 162:4
338
- */
339
83
  static readonly CHATBOX_TAB_ALL = 10616836;
340
-
341
- /**
342
- * 162:7
343
- */
344
84
  static readonly CHATBOX_TAB_GAME = 10616839;
345
-
346
- /**
347
- * 162:11
348
- */
349
85
  static readonly CHATBOX_TAB_PUBLIC = 10616843;
350
-
351
- /**
352
- * 162:15
353
- */
354
86
  static readonly CHATBOX_TAB_PRIVATE = 10616847;
355
-
356
- /**
357
- * 162:19
358
- */
359
87
  static readonly CHATBOX_TAB_CHANNEL = 10616851;
360
-
361
- /**
362
- * 162:23
363
- */
364
88
  static readonly CHATBOX_TAB_CLAN = 10616855;
365
-
366
- /**
367
- * 162:27
368
- */
369
89
  static readonly CHATBOX_TAB_TRADE = 10616859;
370
-
371
- /**
372
- * 162:33
373
- */
374
90
  static readonly CHATBOX_REPORT_TEXT = 10616865;
375
-
376
- /**
377
- * 162:34
378
- */
379
91
  static readonly CHATBOX_FRAME = 10616866;
380
-
381
- /**
382
- * 162:35
383
- */
384
- static readonly CHATBOX_TRANSPARENT_BACKGROUND = 10616867;
385
-
386
- /**
387
- * 162:37
388
- */
389
- static readonly CHATBOX_CONTAINER = 10616869;
390
-
391
- /**
392
- * 162:41
393
- */
394
- static readonly CHATBOX_TITLE = 10616873;
395
-
396
- /**
397
- * 162:42
398
- */
399
- static readonly CHATBOX_FULL_INPUT = 10616874;
400
-
401
- /**
402
- * 162:50
403
- */
404
- static readonly CHATBOX_GE_SEARCH_RESULTS = 10616882;
405
-
406
- /**
407
- * 162:53
408
- */
409
- static readonly CHATBOX_MESSAGES = 10616885;
410
-
411
- /**
412
- * 162:54
413
- */
414
- static readonly CHATBOX_TRANSPARENT_BACKGROUND_LINES = 10616886;
415
-
416
- /**
417
- * 162:55
418
- */
419
- static readonly CHATBOX_INPUT = 10616887;
420
-
421
- /**
422
- * 162:56
423
- */
424
- static readonly CHATBOX_MESSAGE_LINES = 10616888;
425
-
426
- /**
427
- * 162:57
428
- */
429
- static readonly CHATBOX_FIRST_MESSAGE = 10616889;
430
-
431
- /**
432
- * 701:0
433
- */
92
+ static readonly CHATBOX_TRANSPARENT_BACKGROUND = 10616868;
93
+ static readonly CHATBOX_CONTAINER = 10616870;
94
+ static readonly CHATBOX_TITLE = 10616874;
95
+ static readonly CHATBOX_FULL_INPUT = 10616875;
96
+ static readonly CHATBOX_GE_SEARCH_RESULTS = 10616883;
97
+ static readonly CHATBOX_MESSAGES = 10616886;
98
+ static readonly CHATBOX_TRANSPARENT_BACKGROUND_LINES = 10616887;
99
+ static readonly CHATBOX_INPUT = 10616888;
100
+ static readonly CHATBOX_MESSAGE_LINES = 10616889;
101
+ static readonly CHATBOX_FIRST_MESSAGE = 10616890;
434
102
  static readonly CLAN_LAYER = 45940736;
435
-
436
- /**
437
- * 701:1
438
- */
439
103
  static readonly CLAN_HEADER = 45940737;
440
-
441
- /**
442
- * 701:6
443
- */
444
104
  static readonly CLAN_MEMBERS = 45940742;
445
-
446
- /**
447
- * 702:0
448
- */
449
105
  static readonly CLAN_GUEST_LAYER = 46006272;
450
-
451
- /**
452
- * 702:1
453
- */
454
106
  static readonly CLAN_GUEST_HEADER = 46006273;
455
-
456
- /**
457
- * 702:6
458
- */
459
107
  static readonly CLAN_GUEST_MEMBERS = 46006278;
460
-
461
- /**
462
- * 203:2
463
- */
464
108
  static readonly CLUESCROLL_TEXT = 13303810;
465
-
466
- /**
467
- * 73:3
468
- */
469
109
  static readonly CLUESCROLL_REWARD_ITEM_CONTAINER = 4784131;
470
-
471
- /**
472
- * 621:0
473
- */
474
- static readonly COLLECTION_LOG_CONTAINER = 40697856;
475
-
476
- /**
477
- * 621:3
478
- */
110
+ static readonly COLLECTION_LOG_CONTAINER = 40697943;
479
111
  static readonly COLLECTION_LOG_TABS = 40697859;
480
-
481
- /**
482
- * 621:17
483
- */
484
112
  static readonly COLLECTION_LOG_ENTRY = 40697873;
485
-
486
- /**
487
- * 621:19
488
- */
489
- static readonly COLLECTION_LOG_ENTRY_HEADER = 40697875;
490
-
491
- /**
492
- * 621:36
493
- */
494
- static readonly COLLECTION_LOG_ENTRY_ITEMS = 40697892;
495
-
496
- /**
497
- * 593:3
498
- */
499
- static readonly COMBAT_LEVEL = 38862851;
500
-
501
- /**
502
- * 593:4
503
- */
504
- static readonly COMBAT_STYLE_ONE = 38862852;
505
-
506
- /**
507
- * 593:8
508
- */
509
- static readonly COMBAT_STYLE_TWO = 38862856;
510
-
511
- /**
512
- * 593:12
513
- */
514
- static readonly COMBAT_STYLE_THREE = 38862860;
515
-
516
- /**
517
- * 593:16
518
- */
519
- static readonly COMBAT_STYLE_FOUR = 38862864;
520
-
521
- /**
522
- * 593:20
523
- */
524
- static readonly COMBAT_SPELLS = 38862868;
525
-
526
- /**
527
- * 593:21
528
- */
529
- static readonly COMBAT_DEFENSIVE_SPELL_BOX = 38862869;
530
-
531
- /**
532
- * 593:23
533
- */
534
- static readonly COMBAT_DEFENSIVE_SPELL_ICON = 38862871;
535
-
536
- /**
537
- * 593:24
538
- */
539
- static readonly COMBAT_DEFENSIVE_SPELL_SHIELD = 38862872;
540
-
541
- /**
542
- * 593:25
543
- */
544
- static readonly COMBAT_DEFENSIVE_SPELL_TEXT = 38862873;
545
-
546
- /**
547
- * 593:26
548
- */
549
- static readonly COMBAT_SPELL_BOX = 38862874;
550
-
551
- /**
552
- * 593:28
553
- */
554
- static readonly COMBAT_SPELL_ICON = 38862876;
555
-
556
- /**
557
- * 593:29
558
- */
559
- static readonly COMBAT_SPELL_TEXT = 38862877;
560
-
561
- /**
562
- * 593:30
563
- */
564
- static readonly COMBAT_AUTO_RETALIATE = 38862878;
565
-
566
- /**
567
- * 192:2
568
- */
569
- static readonly DEPOSIT_BOX_INVENTORY_ITEM_CONTAINER = 12582914;
570
-
571
- /**
572
- * 584:1
573
- */
113
+ static readonly COLLECTION_LOG_ENTRY_HEADER = 40697876;
114
+ static readonly COLLECTION_LOG_ENTRY_ITEMS = 40697893;
115
+ static readonly COMBAT_WEAPON_NAME = 38862850;
116
+ static readonly COMBAT_LEVEL = 38862852;
117
+ static readonly COMBAT_STYLE_ONE = 38862853;
118
+ static readonly COMBAT_STYLE_TWO = 38862857;
119
+ static readonly COMBAT_STYLE_THREE = 38862861;
120
+ static readonly COMBAT_STYLE_FOUR = 38862865;
121
+ static readonly COMBAT_SPELLS = 38862869;
122
+ static readonly COMBAT_DEFENSIVE_SPELL_BOX = 38862870;
123
+ static readonly COMBAT_DEFENSIVE_SPELL_ICON = 38862872;
124
+ static readonly COMBAT_DEFENSIVE_SPELL_SHIELD = 38862873;
125
+ static readonly COMBAT_DEFENSIVE_SPELL_TEXT = 38862874;
126
+ static readonly COMBAT_SPELL_BOX = 38862875;
127
+ static readonly COMBAT_SPELL_ICON = 38862877;
128
+ static readonly COMBAT_SPELL_TEXT = 38862878;
129
+ static readonly COMBAT_AUTO_RETALIATE = 38862879;
130
+ static readonly COMBAT_ACHIEVEMENTS_TASKS_PROGRESS_BAR = 46858243;
131
+ static readonly COMBAT_ACHIEVEMENTS_TASKS_LIST = 46858249;
132
+ static readonly COMBAT_ACHIEVEMENTS_TASKS_FILTERS = 46858257;
133
+ static readonly DEPOSIT_BOX_INVENTORY_ITEM_CONTAINER = 12582935;
574
134
  static readonly DESTROY_ITEM_YES = 38273025;
575
-
576
- /**
577
- * 584:3
578
- */
579
135
  static readonly DESTROY_ITEM_NO = 38273027;
580
-
581
- /**
582
- * 584:6
583
- */
584
136
  static readonly DESTROY_ITEM_NAME = 38273030;
585
-
586
- /**
587
- * 11:1
588
- */
589
137
  static readonly DIALOG_DOUBLE_SPRITE_SPRITE1 = 720897;
590
-
591
- /**
592
- * 11:2
593
- */
594
138
  static readonly DIALOG_DOUBLE_SPRITE_TEXT = 720898;
595
-
596
- /**
597
- * 11:3
598
- */
599
139
  static readonly DIALOG_DOUBLE_SPRITE_SPRITE2 = 720899;
600
-
601
- /**
602
- * 231:2
603
- */
604
140
  static readonly DIALOG_NPC_HEAD_MODEL = 15138818;
605
-
606
- /**
607
- * 231:4
608
- */
609
141
  static readonly DIALOG_NPC_NAME = 15138820;
610
-
611
- /**
612
- * 231:6
613
- */
614
142
  static readonly DIALOG_NPC_TEXT = 15138822;
615
-
616
- /**
617
- * 219:1
618
- */
619
143
  static readonly DIALOG_OPTION_OPTIONS = 14352385;
620
-
621
- /**
622
- * 217:6
623
- */
624
144
  static readonly DIALOG_PLAYER_TEXT = 14221318;
625
-
626
- /**
627
- * 193:1
628
- */
629
145
  static readonly DIALOG_SPRITE_SPRITE = 12648449;
630
-
631
- /**
632
- * 193:2
633
- */
634
146
  static readonly DIALOG_SPRITE_TEXT = 12648450;
635
-
636
- /**
637
- * 119:2
638
- */
639
- static readonly DIARY_TITLE = 7798786;
640
-
641
- /**
642
- * 119:3
643
- */
644
- static readonly DIARY_TEXT = 7798787;
645
-
646
- /**
647
- * 216:0
648
- */
147
+ static readonly DIARY_TITLE = 7798788;
148
+ static readonly DIARY_TEXT = 7798789;
649
149
  static readonly EMOTES_WINDOW = 14155776;
650
-
651
- /**
652
- * 216:1
653
- */
654
150
  static readonly EMOTES_EMOTE_SCROLL_CONTAINER = 14155777;
655
-
656
- /**
657
- * 216:2
658
- */
659
151
  static readonly EMOTES_EMOTE_CONTAINER = 14155778;
660
-
661
- /**
662
- * 216:4
663
- */
664
152
  static readonly EMOTES_EMOTE_SCROLLBAR = 14155780;
665
-
666
- /**
667
- * 387:0
668
- */
669
153
  static readonly EQUIPMENT_INVENTORY_ITEM_CONTAINER = 25362432;
670
-
671
- /**
672
- * 84:1
673
- */
154
+ static readonly EQUIPMENT_CAPE = 25362448;
155
+ static readonly EQUIPMENT_DIZANAS_QUIVER_ITEM_CONTAINER = 25362460;
674
156
  static readonly EQUIPMENT_BONUSES_PARENT = 5505025;
675
-
676
- /**
677
- * 84:43
678
- */
679
- static readonly EQUIPMENT_BONUSES_SET_BONUS = 5505067;
680
-
681
- /**
682
- * 84:48
683
- */
684
- static readonly EQUIPMENT_BONUSES_STAT_BONUS = 5505072;
685
-
686
- /**
687
- * 122:4
688
- */
157
+ static readonly EQUIPMENT_BONUSES_SET_BONUS = 5505068;
158
+ static readonly EQUIPMENT_BONUSES_STAT_BONUS = 5505073;
689
159
  static readonly EXPERIENCE_TRACKER_WIDGET = 7995396;
690
-
691
- /**
692
- * 122:16
693
- */
694
160
  static readonly EXPERIENCE_TRACKER_BOTTOM_BAR = 7995408;
695
-
696
- /**
697
- * 483:7
698
- */
699
161
  static readonly EXPLORERS_RING_INVENTORY = 31653895;
700
-
701
- /**
702
- * 398:26
703
- */
704
162
  static readonly FAIRY_RING_TELEPORT_BUTTON = 26083354;
705
-
706
- /**
707
- * 381:2
708
- */
709
163
  static readonly FAIRY_RING_PANEL_HEADER = 24969218;
710
-
711
- /**
712
- * 381:7
713
- */
714
164
  static readonly FAIRY_RING_PANEL_LIST = 24969223;
715
-
716
- /**
717
- * 381:8
718
- */
719
165
  static readonly FAIRY_RING_PANEL_FAVORITES = 24969224;
720
-
721
- /**
722
- * 381:9
723
- */
724
166
  static readonly FAIRY_RING_PANEL_SEPARATOR = 24969225;
725
-
726
- /**
727
- * 381:152
728
- */
729
167
  static readonly FAIRY_RING_PANEL_SCROLLBAR = 24969368;
730
-
731
- /**
732
- * 548:8
733
- */
734
168
  static readonly FIXED_VIEWPORT_MINIMAP = 35913736;
735
-
736
- /**
737
- * 548:16
738
- */
739
169
  static readonly FIXED_VIEWPORT_ROOT_INTERFACE_CONTAINER = 35913744;
740
-
741
- /**
742
- * 548:21
743
- */
744
170
  static readonly FIXED_VIEWPORT_MINIMAP_DRAW_AREA = 35913749;
745
-
746
- /**
747
- * 548:32
748
- */
749
171
  static readonly FIXED_VIEWPORT_FIXED_VIEWPORT = 35913760;
750
-
751
- /**
752
- * 548:36
753
- */
754
172
  static readonly FIXED_VIEWPORT_MULTICOMBAT_INDICATOR = 35913764;
755
-
756
- /**
757
- * 548:47
758
- */
759
173
  static readonly FIXED_VIEWPORT_FRIENDS_CHAT_TAB = 35913775;
760
-
761
- /**
762
- * 548:48
763
- */
764
174
  static readonly FIXED_VIEWPORT_IGNORES_TAB = 35913776;
765
-
766
- /**
767
- * 548:49
768
- */
769
175
  static readonly FIXED_VIEWPORT_FRIENDS_TAB = 35913777;
770
-
771
- /**
772
- * 548:50
773
- */
774
176
  static readonly FIXED_VIEWPORT_LOGOUT_TAB = 35913778;
775
-
776
- /**
777
- * 548:51
778
- */
779
177
  static readonly FIXED_VIEWPORT_OPTIONS_TAB = 35913779;
780
-
781
- /**
782
- * 548:52
783
- */
784
178
  static readonly FIXED_VIEWPORT_EMOTES_TAB = 35913780;
785
-
786
- /**
787
- * 548:53
788
- */
789
179
  static readonly FIXED_VIEWPORT_MUSIC_TAB = 35913781;
790
-
791
- /**
792
- * 548:54
793
- */
794
180
  static readonly FIXED_VIEWPORT_FRIENDS_CHAT_ICON = 35913782;
795
-
796
- /**
797
- * 548:55
798
- */
799
181
  static readonly FIXED_VIEWPORT_IGNORES_ICON = 35913783;
800
-
801
- /**
802
- * 548:56
803
- */
804
182
  static readonly FIXED_VIEWPORT_FRIENDS_ICON = 35913784;
805
-
806
- /**
807
- * 548:57
808
- */
809
183
  static readonly FIXED_VIEWPORT_LOGOUT_ICON = 35913785;
810
-
811
- /**
812
- * 548:58
813
- */
814
184
  static readonly FIXED_VIEWPORT_OPTIONS_ICON = 35913786;
815
-
816
- /**
817
- * 548:59
818
- */
819
185
  static readonly FIXED_VIEWPORT_EMOTES_ICON = 35913787;
820
-
821
- /**
822
- * 548:60
823
- */
824
186
  static readonly FIXED_VIEWPORT_MUSIC_ICON = 35913788;
825
-
826
- /**
827
- * 548:63
828
- */
829
187
  static readonly FIXED_VIEWPORT_COMBAT_TAB = 35913791;
830
-
831
- /**
832
- * 548:64
833
- */
834
188
  static readonly FIXED_VIEWPORT_STATS_TAB = 35913792;
835
-
836
- /**
837
- * 548:65
838
- */
839
189
  static readonly FIXED_VIEWPORT_QUESTS_TAB = 35913793;
840
-
841
- /**
842
- * 548:66
843
- */
844
190
  static readonly FIXED_VIEWPORT_INVENTORY_TAB = 35913794;
845
-
846
- /**
847
- * 548:67
848
- */
849
191
  static readonly FIXED_VIEWPORT_EQUIPMENT_TAB = 35913795;
850
-
851
- /**
852
- * 548:68
853
- */
854
192
  static readonly FIXED_VIEWPORT_PRAYER_TAB = 35913796;
855
-
856
- /**
857
- * 548:69
858
- */
859
193
  static readonly FIXED_VIEWPORT_MAGIC_TAB = 35913797;
860
-
861
- /**
862
- * 548:70
863
- */
864
194
  static readonly FIXED_VIEWPORT_COMBAT_ICON = 35913798;
865
-
866
- /**
867
- * 548:71
868
- */
869
195
  static readonly FIXED_VIEWPORT_STATS_ICON = 35913799;
870
-
871
- /**
872
- * 548:72
873
- */
874
196
  static readonly FIXED_VIEWPORT_QUESTS_ICON = 35913800;
875
-
876
- /**
877
- * 548:73
878
- */
879
197
  static readonly FIXED_VIEWPORT_INVENTORY_ICON = 35913801;
880
-
881
- /**
882
- * 548:74
883
- */
884
198
  static readonly FIXED_VIEWPORT_EQUIPMENT_ICON = 35913802;
885
-
886
- /**
887
- * 548:75
888
- */
889
199
  static readonly FIXED_VIEWPORT_PRAYER_ICON = 35913803;
890
-
891
- /**
892
- * 548:76
893
- */
894
200
  static readonly FIXED_VIEWPORT_MAGIC_ICON = 35913804;
895
-
896
- /**
897
- * 548:78
898
- */
899
201
  static readonly FIXED_VIEWPORT_BANK_CONTAINER = 35913806;
900
-
901
- /**
902
- * 548:79
903
- */
904
202
  static readonly FIXED_VIEWPORT_INTERFACE_CONTAINER = 35913807;
905
-
906
- /**
907
- * 548:83
908
- */
909
203
  static readonly FIXED_VIEWPORT_INVENTORY_CONTAINER = 35913811;
910
-
911
- /**
912
- * 609:1
913
- */
914
204
  static readonly FOSSIL_ISLAND_OXYGEN_BAR_BAR = 39911425;
915
-
916
- /**
917
- * 429:3
918
- */
919
205
  static readonly FRIEND_LIST_TITLE = 28114947;
920
-
921
- /**
922
- * 429:5
923
- */
924
206
  static readonly FRIEND_LIST_FULL_CONTAINER = 28114949;
925
-
926
- /**
927
- * 429:7
928
- */
929
207
  static readonly FRIEND_LIST_SORT_BY_NAME_BUTTON = 28114951;
930
-
931
- /**
932
- * 429:8
933
- */
934
208
  static readonly FRIEND_LIST_SORT_BY_LAST_WORLD_CHANGE_BUTTON = 28114952;
935
-
936
- /**
937
- * 429:9
938
- */
939
209
  static readonly FRIEND_LIST_SORT_BY_WORLD_BUTTON = 28114953;
940
-
941
- /**
942
- * 429:10
943
- */
944
210
  static readonly FRIEND_LIST_LEGACY_SORT_BUTTON = 28114954;
945
-
946
- /**
947
- * 429:11
948
- */
949
211
  static readonly FRIEND_LIST_NAMES_CONTAINER = 28114955;
950
-
951
- /**
952
- * 429:12
953
- */
954
212
  static readonly FRIEND_LIST_SCROLL_BAR = 28114956;
955
-
956
- /**
957
- * 429:13
958
- */
959
213
  static readonly FRIEND_LIST_LOADING_TEXT = 28114957;
960
-
961
- /**
962
- * 429:18
963
- */
964
214
  static readonly FRIEND_LIST_PREVIOUS_NAME_HOLDER = 28114962;
965
-
966
- /**
967
- * 7:0
968
- */
969
215
  static readonly FRIENDS_CHAT_ROOT = 458752;
970
-
971
- /**
972
- * 7:1
973
- */
974
216
  static readonly FRIENDS_CHAT_TITLE = 458753;
975
-
976
- /**
977
- * 7:2
978
- */
979
217
  static readonly FRIENDS_CHAT_OWNER = 458754;
980
-
981
- /**
982
- * 7:12
983
- */
984
218
  static readonly FRIENDS_CHAT_LIST = 458764;
985
-
986
- /**
987
- * 637:2
988
- */
989
219
  static readonly GAUNTLET_TIMER_CONTAINER = 41746434;
990
-
991
- /**
992
- * 625:7
993
- */
994
220
  static readonly GENERIC_SCROLL_TEXT = 40960007;
995
-
996
- /**
997
- * 139:2
998
- */
999
221
  static readonly GNOMEBALL_SCORE = 9109506;
1000
-
1001
- /**
1002
- * 746:2
1003
- */
1004
222
  static readonly GOTR_DISPLAY = 48889858;
1005
-
1006
- /**
1007
- * 465:0
1008
- */
1009
223
  static readonly GRAND_EXCHANGE_WINDOW_CONTAINER = 30474240;
1010
-
1011
- /**
1012
- * 465:25
1013
- */
1014
224
  static readonly GRAND_EXCHANGE_OFFER_CONTAINER = 30474265;
1015
-
1016
- /**
1017
- * 465:26
1018
- */
1019
225
  static readonly GRAND_EXCHANGE_OFFER_DESCRIPTION = 30474266;
1020
-
1021
- /**
1022
- * 467:0
1023
- */
1024
226
  static readonly GRAND_EXCHANGE_INVENTORY_INVENTORY_ITEM_CONTAINER = 30605312;
1025
-
1026
- /**
1027
- * 724:2
1028
- */
1029
227
  static readonly GROUP_STORAGE_UI = 47448066;
1030
-
1031
- /**
1032
- * 724:10
1033
- */
1034
228
  static readonly GROUP_STORAGE_ITEM_CONTAINER = 47448074;
1035
-
1036
- /**
1037
- * 724:16
1038
- */
1039
229
  static readonly GROUP_STORAGE_SEARCH_BUTTON = 47448080;
1040
-
1041
- /**
1042
- * 464:0
1043
- */
1044
230
  static readonly GUIDE_PRICES_INVENTORY_ITEM_CONTAINER = 30408704;
1045
-
1046
- /**
1047
- * 464:2
1048
- */
1049
231
  static readonly GUIDE_PRICES_ITEM_CONTAINER = 30408706;
1050
-
1051
- /**
1052
- * 406:5
1053
- */
1054
232
  static readonly GWD_KC_LAYER = 26607621;
1055
-
1056
- /**
1057
- * 668:2
1058
- */
1059
233
  static readonly HALLOWED_SEPULCHRE_TIMER_CONTAINER = 43778050;
1060
-
1061
- /**
1062
- * 303:5
1063
- */
1064
234
  static readonly HEALTH_HEALTHBAR_CONTAINER = 19857413;
1065
-
1066
- /**
1067
- * 303:20
1068
- */
1069
235
  static readonly HEALTH_HEALTHBAR_TEXT = 19857428;
1070
-
1071
- /**
1072
- * 432:3
1073
- */
1074
236
  static readonly IGNORE_LIST_TITLE = 28311555;
1075
-
1076
- /**
1077
- * 432:5
1078
- */
1079
237
  static readonly IGNORE_LIST_FULL_CONTAINER = 28311557;
1080
-
1081
- /**
1082
- * 432:7
1083
- */
1084
238
  static readonly IGNORE_LIST_SORT_BY_NAME_BUTTON = 28311559;
1085
-
1086
- /**
1087
- * 432:8
1088
- */
1089
239
  static readonly IGNORE_LIST_LEGACY_SORT_BUTTON = 28311560;
1090
-
1091
- /**
1092
- * 432:9
1093
- */
1094
240
  static readonly IGNORE_LIST_NAMES_CONTAINER = 28311561;
1095
-
1096
- /**
1097
- * 432:10
1098
- */
1099
241
  static readonly IGNORE_LIST_SCROLL_BAR = 28311562;
1100
-
1101
- /**
1102
- * 432:11
1103
- */
1104
242
  static readonly IGNORE_LIST_LOADING_TEXT = 28311563;
1105
-
1106
- /**
1107
- * 432:16
1108
- */
1109
243
  static readonly IGNORE_LIST_PREVIOUS_NAME_HOLDER = 28311568;
1110
-
1111
- /**
1112
- * 149:0
1113
- */
1114
244
  static readonly INVENTORY_CONTAINER = 9764864;
1115
-
1116
- /**
1117
- * 549:3
1118
- */
1119
245
  static readonly KILL_LOG_TITLE = 35979267;
1120
-
1121
- /**
1122
- * 549:13
1123
- */
1124
246
  static readonly KILL_LOG_MONSTER = 35979277;
1125
-
1126
- /**
1127
- * 549:14
1128
- */
1129
247
  static readonly KILL_LOG_KILLS = 35979278;
1130
-
1131
- /**
1132
- * 549:15
1133
- */
1134
248
  static readonly KILL_LOG_STREAK = 35979279;
1135
-
1136
- /**
1137
- * 233:1
1138
- */
1139
249
  static readonly LEVEL_UP_SKILL = 15269889;
1140
-
1141
- /**
1142
- * 233:2
1143
- */
1144
250
  static readonly LEVEL_UP_LEVEL = 15269890;
1145
-
1146
- /**
1147
- * 322:1
1148
- */
1149
251
  static readonly LIGHT_BOX_LIGHT_BOX = 21102593;
1150
-
1151
- /**
1152
- * 322:2
1153
- */
1154
252
  static readonly LIGHT_BOX_LIGHT_BOX_WINDOW = 21102594;
1155
-
1156
- /**
1157
- * 322:3
1158
- */
1159
253
  static readonly LIGHT_BOX_LIGHT_BULB_CONTAINER = 21102595;
1160
-
1161
- /**
1162
- * 322:8
1163
- */
1164
254
  static readonly LIGHT_BOX_BUTTON_A = 21102600;
1165
-
1166
- /**
1167
- * 322:9
1168
- */
1169
255
  static readonly LIGHT_BOX_BUTTON_B = 21102601;
1170
-
1171
- /**
1172
- * 322:10
1173
- */
1174
256
  static readonly LIGHT_BOX_BUTTON_C = 21102602;
1175
-
1176
- /**
1177
- * 322:11
1178
- */
1179
257
  static readonly LIGHT_BOX_BUTTON_D = 21102603;
1180
-
1181
- /**
1182
- * 322:12
1183
- */
1184
258
  static readonly LIGHT_BOX_BUTTON_E = 21102604;
1185
-
1186
- /**
1187
- * 322:13
1188
- */
1189
259
  static readonly LIGHT_BOX_BUTTON_F = 21102605;
1190
-
1191
- /**
1192
- * 322:14
1193
- */
1194
260
  static readonly LIGHT_BOX_BUTTON_G = 21102606;
1195
-
1196
- /**
1197
- * 322:15
1198
- */
1199
261
  static readonly LIGHT_BOX_BUTTON_H = 21102607;
1200
-
1201
- /**
1202
- * 333:2
1203
- */
1204
262
  static readonly LMS_INFO = 21823490;
1205
-
1206
- /**
1207
- * 328:4
1208
- */
1209
263
  static readonly LMS_INGAME_INFO = 21495812;
1210
-
1211
- /**
1212
- * 333:4
1213
- */
1214
- static readonly LMS_KDA_INFO = 21823492;
1215
-
1216
- /**
1217
- * 378:6
1218
- */
1219
264
  static readonly LOGIN_CLICK_TO_PLAY_SCREEN_MESSAGE_OF_THE_DAY = 24772614;
1220
-
1221
- /**
1222
- * 182:3
1223
- */
1224
265
  static readonly LOGOUT_PANEL_WORLD_SWITCHER_BUTTON = 11927555;
1225
-
1226
- /**
1227
- * 182:6
1228
- */
1229
266
  static readonly LOGOUT_PANEL_LOGOUT_BUTTON = 11927558;
1230
-
1231
- /**
1232
- * 81:5
1233
- */
1234
267
  static readonly LOOTING_BAG_LOOTING_BAG_INVENTORY = 5308421;
1235
-
1236
- /**
1237
- * 160:30
1238
- */
1239
- static readonly MINIGAMES_TELEPORT_BUTTON = 10485790;
1240
-
1241
- /**
1242
- * 160:0
1243
- */
1244
268
  static readonly MINIMAP_CONTAINER = 10485760;
1245
-
1246
- /**
1247
- * 160:5
1248
- */
1249
269
  static readonly MINIMAP_XP_ORB = 10485765;
1250
-
1251
- /**
1252
- * 160:6
1253
- */
1254
270
  static readonly MINIMAP_HEALTH_ORB = 10485766;
1255
-
1256
- /**
1257
- * 160:17
1258
- */
1259
271
  static readonly MINIMAP_PRAYER_ORB = 10485777;
1260
-
1261
- /**
1262
- * 160:19
1263
- */
1264
272
  static readonly MINIMAP_QUICK_PRAYER_ORB = 10485779;
1265
-
1266
- /**
1267
- * 160:20
1268
- */
1269
273
  static readonly MINIMAP_PRAYER_ORB_TEXT = 10485780;
1270
-
1271
- /**
1272
- * 160:25
1273
- */
1274
274
  static readonly MINIMAP_RUN_ORB = 10485785;
1275
-
1276
- /**
1277
- * 160:27
1278
- */
1279
275
  static readonly MINIMAP_TOGGLE_RUN_ORB = 10485787;
1280
-
1281
- /**
1282
- * 160:28
1283
- */
1284
276
  static readonly MINIMAP_RUN_ORB_TEXT = 10485788;
1285
-
1286
- /**
1287
- * 160:33
1288
- */
1289
277
  static readonly MINIMAP_SPEC_ORB = 10485793;
1290
-
1291
- /**
1292
- * 160:48
1293
- */
1294
278
  static readonly MINIMAP_WORLDMAP_ORB = 10485808;
1295
-
1296
- /**
1297
- * 160:49
1298
- */
1299
279
  static readonly MINIMAP_WIKI_BANNER_PARENT = 10485809;
1300
-
1301
- /**
1302
- * 160:50
1303
- */
1304
280
  static readonly MINIMAP_WIKI_BANNER = 10485810;
1305
-
1306
- /**
1307
- * 160:53
1308
- */
1309
281
  static readonly MINIMAP_WORLDMAP_OPTIONS = 10485813;
1310
-
1311
- /**
1312
- * 382:0
1313
- */
1314
- static readonly MLM_CONTAINER = 25034752;
1315
-
1316
- /**
1317
- * 171:2
1318
- */
282
+ static readonly MLM_LAYER = 25034755;
283
+ static readonly MLM_SACK_SIZE_TEXT = 25034757;
284
+ static readonly MLM_SPACE_TEXT = 25034758;
285
+ static readonly MOONS_OF_PERIL_LAYER = 56950786;
1319
286
  static readonly MORTTON_TEMPLE_STATUS = 11206658;
1320
-
1321
- /**
1322
- * 194:2
1323
- */
1324
287
  static readonly MTA_ALCHEMY_POINTS = 12713986;
1325
-
1326
- /**
1327
- * 195:2
1328
- */
1329
288
  static readonly MTA_ENCHANT_POINTS = 12779522;
1330
-
1331
- /**
1332
- * 195:8
1333
- */
1334
289
  static readonly MTA_ENCHANT_BONUS = 12779528;
1335
-
1336
- /**
1337
- * 196:2
1338
- */
1339
290
  static readonly MTA_GRAVEYARD_POINTS = 12845058;
1340
-
1341
- /**
1342
- * 196:8
1343
- */
1344
291
  static readonly MTA_GRAVEYARD_VALUES = 12845064;
1345
-
1346
- /**
1347
- * 198:2
1348
- */
1349
292
  static readonly MTA_TELEKINETIC_POINTS = 12976130;
1350
-
1351
- /**
1352
- * 198:8
1353
- */
1354
293
  static readonly MTA_TELEKINETIC_SOLVED = 12976136;
1355
-
1356
- /**
1357
- * 239:0
1358
- */
1359
294
  static readonly MUSIC_CONTAINER = 15663104;
1360
-
1361
- /**
1362
- * 239:4
1363
- */
1364
295
  static readonly MUSIC_SCROLL_CONTAINER = 15663108;
1365
-
1366
- /**
1367
- * 239:6
1368
- */
1369
296
  static readonly MUSIC_LIST = 15663110;
1370
-
1371
- /**
1372
- * 239:7
1373
- */
1374
297
  static readonly MUSIC_SCROLLBAR = 15663111;
1375
-
1376
- /**
1377
- * 413:1
1378
- */
1379
298
  static readonly NIGHTMARE_PILLAR_HEALTH_LAYER = 27066369;
1380
-
1381
- /**
1382
- * 202:0
1383
- */
1384
299
  static readonly NMZ_CONTAINER = 13238272;
1385
-
1386
- /**
1387
- * 408:2
1388
- */
1389
300
  static readonly PEST_CONTROL_KNIGHT_INFO_CONTAINER = 26738690;
1390
-
1391
- /**
1392
- * 408:9
1393
- */
1394
301
  static readonly PEST_CONTROL_ACTIVITY_SHIELD_CONTAINER = 26738697;
1395
-
1396
- /**
1397
- * 408:10
1398
- */
1399
302
  static readonly PEST_CONTROL_ACTIVITY_BAR = 26738698;
1400
-
1401
- /**
1402
- * 408:12
1403
- */
1404
303
  static readonly PEST_CONTROL_ACTIVITY_PROGRESS = 26738700;
1405
-
1406
- /**
1407
- * 408:13
1408
- */
1409
304
  static readonly PEST_CONTROL_PURPLE_SHIELD = 26738701;
1410
-
1411
- /**
1412
- * 408:14
1413
- */
1414
305
  static readonly PEST_CONTROL_BLUE_SHIELD = 26738702;
1415
-
1416
- /**
1417
- * 408:15
1418
- */
1419
306
  static readonly PEST_CONTROL_YELLOW_SHIELD = 26738703;
1420
-
1421
- /**
1422
- * 408:16
1423
- */
1424
307
  static readonly PEST_CONTROL_RED_SHIELD = 26738704;
1425
-
1426
- /**
1427
- * 408:17
1428
- */
1429
308
  static readonly PEST_CONTROL_PURPLE_ICON = 26738705;
1430
-
1431
- /**
1432
- * 408:18
1433
- */
1434
309
  static readonly PEST_CONTROL_BLUE_ICON = 26738706;
1435
-
1436
- /**
1437
- * 408:19
1438
- */
1439
310
  static readonly PEST_CONTROL_YELLOW_ICON = 26738707;
1440
-
1441
- /**
1442
- * 408:20
1443
- */
1444
311
  static readonly PEST_CONTROL_RED_ICON = 26738708;
1445
-
1446
- /**
1447
- * 408:21
1448
- */
1449
312
  static readonly PEST_CONTROL_PURPLE_HEALTH = 26738709;
1450
-
1451
- /**
1452
- * 408:22
1453
- */
1454
313
  static readonly PEST_CONTROL_BLUE_HEALTH = 26738710;
1455
-
1456
- /**
1457
- * 408:23
1458
- */
1459
314
  static readonly PEST_CONTROL_YELLOW_HEALTH = 26738711;
1460
-
1461
- /**
1462
- * 408:24
1463
- */
1464
315
  static readonly PEST_CONTROL_RED_HEALTH = 26738712;
1465
-
1466
- /**
1467
- * 407:2
1468
- */
1469
316
  static readonly PEST_CONTROL_BOAT_LAYER = 26673154;
1470
-
1471
- /**
1472
- * 674:0
1473
- */
1474
317
  static readonly POH_TREASURE_CHEST_INV_CONTAINER = 44171264;
1475
-
1476
- /**
1477
- * 306:4
1478
- */
318
+ static readonly PRAYER_PARENT = 35454976;
1479
319
  static readonly PUZZLE_BOX_VISIBLE_BOX = 20054020;
1480
-
1481
- /**
1482
- * 90:26
1483
- */
1484
320
  static readonly PVP_KILLDEATH_RATIO = 5898266;
1485
-
1486
- /**
1487
- * 90:44
1488
- */
1489
321
  static readonly PVP_WILDERNESS_SKULL_CONTAINER = 5898284;
1490
-
1491
- /**
1492
- * 90:45
1493
- */
1494
322
  static readonly PVP_SKULL_CONTAINER = 5898285;
1495
-
1496
- /**
1497
- * 90:47
1498
- */
1499
323
  static readonly PVP_SAFE_ZONE = 5898287;
1500
-
1501
- /**
1502
- * 90:50
1503
- */
1504
324
  static readonly PVP_WILDERNESS_LEVEL = 5898290;
1505
-
1506
- /**
1507
- * 428:2
1508
- */
1509
325
  static readonly PYRAMID_PLUNDER_DATA = 28049410;
1510
-
1511
- /**
1512
- * 153:4
1513
- */
1514
326
  static readonly QUEST_COMPLETED_NAME_TEXT = 10027012;
1515
-
1516
- /**
1517
- * 399:0
1518
- */
1519
327
  static readonly QUEST_LIST_BOX = 26148864;
1520
-
1521
- /**
1522
- * 399:2
1523
- */
1524
328
  static readonly QUEST_LIST_CONTAINER = 26148866;
1525
-
1526
- /**
1527
- * 77:4
1528
- */
1529
329
  static readonly QUICK_PRAYER_PRAYERS = 5046276;
1530
-
1531
- /**
1532
- * 513:3
1533
- */
1534
330
  static readonly RAIDS_POINTS_INFOBOX = 33619971;
1535
-
1536
- /**
1537
- * 161:15
1538
- */
331
+ static readonly REPORT_ABUSE_PARENT = 57344000;
1539
332
  static readonly RESIZABLE_VIEWPORT_RESIZABLE_VIEWPORT_OLD_SCHOOL_BOX = 10551311;
1540
-
1541
- /**
1542
- * 161:20
1543
- */
1544
333
  static readonly RESIZABLE_VIEWPORT_MULTICOMBAT_INDICATOR = 10551316;
1545
-
1546
- /**
1547
- * 161:30
1548
- */
1549
334
  static readonly RESIZABLE_VIEWPORT_MINIMAP_DRAW_AREA = 10551326;
1550
-
1551
- /**
1552
- * 161:33
1553
- */
1554
335
  static readonly RESIZABLE_VIEWPORT_MINIMAP_ORB_HOLDER = 10551329;
1555
-
1556
- /**
1557
- * 161:43
1558
- */
1559
336
  static readonly RESIZABLE_VIEWPORT_FRIENDS_CHAT_TAB = 10551339;
1560
-
1561
- /**
1562
- * 161:44
1563
- */
1564
337
  static readonly RESIZABLE_VIEWPORT_IGNORES_TAB = 10551340;
1565
-
1566
- /**
1567
- * 161:45
1568
- */
1569
338
  static readonly RESIZABLE_VIEWPORT_FRIENDS_TAB = 10551341;
1570
-
1571
- /**
1572
- * 161:46
1573
- */
1574
339
  static readonly RESIZABLE_VIEWPORT_LOGOUT_TAB = 10551342;
1575
-
1576
- /**
1577
- * 161:47
1578
- */
1579
340
  static readonly RESIZABLE_VIEWPORT_OPTIONS_TAB = 10551343;
1580
-
1581
- /**
1582
- * 161:48
1583
- */
1584
341
  static readonly RESIZABLE_VIEWPORT_EMOTES_TAB = 10551344;
1585
-
1586
- /**
1587
- * 161:49
1588
- */
1589
342
  static readonly RESIZABLE_VIEWPORT_MUSIC_TAB = 10551345;
1590
-
1591
- /**
1592
- * 161:50
1593
- */
1594
343
  static readonly RESIZABLE_VIEWPORT_FRIENDS_CHAT_ICON = 10551346;
1595
-
1596
- /**
1597
- * 161:51
1598
- */
1599
344
  static readonly RESIZABLE_VIEWPORT_IGNORES_ICON = 10551347;
1600
-
1601
- /**
1602
- * 161:52
1603
- */
1604
345
  static readonly RESIZABLE_VIEWPORT_FRIENDS_ICON = 10551348;
1605
-
1606
- /**
1607
- * 161:53
1608
- */
1609
346
  static readonly RESIZABLE_VIEWPORT_LOGOUT_ICON = 10551349;
1610
-
1611
- /**
1612
- * 161:54
1613
- */
1614
347
  static readonly RESIZABLE_VIEWPORT_OPTIONS_ICON = 10551350;
1615
-
1616
- /**
1617
- * 161:55
1618
- */
1619
348
  static readonly RESIZABLE_VIEWPORT_EMOTES_ICON = 10551351;
1620
-
1621
- /**
1622
- * 161:56
1623
- */
1624
349
  static readonly RESIZABLE_VIEWPORT_MUSIC_ICON = 10551352;
1625
-
1626
- /**
1627
- * 161:59
1628
- */
1629
350
  static readonly RESIZABLE_VIEWPORT_COMBAT_TAB = 10551355;
1630
-
1631
- /**
1632
- * 161:60
1633
- */
1634
351
  static readonly RESIZABLE_VIEWPORT_STATS_TAB = 10551356;
1635
-
1636
- /**
1637
- * 161:61
1638
- */
1639
352
  static readonly RESIZABLE_VIEWPORT_QUESTS_TAB = 10551357;
1640
-
1641
- /**
1642
- * 161:62
1643
- */
1644
353
  static readonly RESIZABLE_VIEWPORT_INVENTORY_TAB = 10551358;
1645
-
1646
- /**
1647
- * 161:63
1648
- */
1649
354
  static readonly RESIZABLE_VIEWPORT_EQUIPMENT_TAB = 10551359;
1650
-
1651
- /**
1652
- * 161:64
1653
- */
1654
355
  static readonly RESIZABLE_VIEWPORT_PRAYER_TAB = 10551360;
1655
-
1656
- /**
1657
- * 161:65
1658
- */
1659
356
  static readonly RESIZABLE_VIEWPORT_MAGIC_TAB = 10551361;
1660
-
1661
- /**
1662
- * 161:66
1663
- */
1664
357
  static readonly RESIZABLE_VIEWPORT_COMBAT_ICON = 10551362;
1665
-
1666
- /**
1667
- * 161:67
1668
- */
1669
358
  static readonly RESIZABLE_VIEWPORT_STATS_ICON = 10551363;
1670
-
1671
- /**
1672
- * 161:68
1673
- */
1674
359
  static readonly RESIZABLE_VIEWPORT_QUESTS_ICON = 10551364;
1675
-
1676
- /**
1677
- * 161:69
1678
- */
1679
360
  static readonly RESIZABLE_VIEWPORT_INVENTORY_ICON = 10551365;
1680
-
1681
- /**
1682
- * 161:70
1683
- */
1684
361
  static readonly RESIZABLE_VIEWPORT_EQUIPMENT_ICON = 10551366;
1685
-
1686
- /**
1687
- * 161:71
1688
- */
1689
362
  static readonly RESIZABLE_VIEWPORT_PRAYER_ICON = 10551367;
1690
-
1691
- /**
1692
- * 161:72
1693
- */
1694
363
  static readonly RESIZABLE_VIEWPORT_MAGIC_ICON = 10551368;
1695
-
1696
- /**
1697
- * 161:73
1698
- */
1699
364
  static readonly RESIZABLE_VIEWPORT_INTERFACE_CONTAINER = 10551369;
1700
-
1701
- /**
1702
- * 161:79
1703
- */
1704
365
  static readonly RESIZABLE_VIEWPORT_INVENTORY_CONTAINER = 10551375;
1705
-
1706
- /**
1707
- * 161:95
1708
- */
1709
366
  static readonly RESIZABLE_VIEWPORT_MINIMAP = 10551391;
1710
-
1711
- /**
1712
- * 161:96
1713
- */
1714
367
  static readonly RESIZABLE_VIEWPORT_CHATBOX_PARENT = 10551392;
1715
-
1716
- /**
1717
- * 161:97
1718
- */
1719
368
  static readonly RESIZABLE_VIEWPORT_INVENTORY_PARENT = 10551393;
1720
-
1721
- /**
1722
- * 164:15
1723
- */
1724
369
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_RESIZABLE_VIEWPORT_BOTTOM_LINE = 10747919;
1725
-
1726
- /**
1727
- * 164:20
1728
- */
1729
370
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_MULTICOMBAT_INDICATOR = 10747924;
1730
-
1731
- /**
1732
- * 164:30
1733
- */
1734
371
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_MINIMAP_DRAW_AREA = 10747934;
1735
-
1736
- /**
1737
- * 164:33
1738
- */
1739
372
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_MINIMAP_ORB_HOLDER = 10747937;
1740
-
1741
- /**
1742
- * 164:34
1743
- */
1744
373
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_LOGOUT_BUTTON_OVERLAY = 10747938;
1745
-
1746
- /**
1747
- * 164:35
1748
- */
1749
374
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_MINIMAP_LOGOUT_BUTTON = 10747939;
1750
-
1751
- /**
1752
- * 164:44
1753
- */
1754
375
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_FC_ICON = 10747948;
1755
-
1756
- /**
1757
- * 164:46
1758
- */
1759
376
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_FRIEND_ICON = 10747950;
1760
-
1761
- /**
1762
- * 164:47
1763
- */
1764
377
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_SETTINGS_ICON = 10747951;
1765
-
1766
- /**
1767
- * 164:48
1768
- */
1769
378
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_EMOTE_ICON = 10747952;
1770
-
1771
- /**
1772
- * 164:49
1773
- */
1774
379
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_MUSIC_ICON = 10747953;
1775
-
1776
- /**
1777
- * 164:55
1778
- */
1779
380
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_INVENTORY_TAB = 10747959;
1780
-
1781
- /**
1782
- * 164:57
1783
- */
1784
381
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_PRAYER_TAB = 10747961;
1785
-
1786
- /**
1787
- * 164:59
1788
- */
382
+ static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_MAGIC_TAB = 10747962;
1789
383
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_CMB_ICON = 10747963;
1790
-
1791
- /**
1792
- * 164:60
1793
- */
1794
384
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_SKILLS_ICON = 10747964;
1795
-
1796
- /**
1797
- * 164:61
1798
- */
1799
385
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_QUESTS_ICON = 10747965;
1800
-
1801
- /**
1802
- * 164:62
1803
- */
1804
386
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_INVENTORY_ICON = 10747966;
1805
-
1806
- /**
1807
- * 164:63
1808
- */
1809
387
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_EQUIP_ICON = 10747967;
1810
-
1811
- /**
1812
- * 164:64
1813
- */
1814
388
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_PRAYER_ICON = 10747968;
1815
-
1816
- /**
1817
- * 164:65
1818
- */
1819
389
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_MAGIC_ICON = 10747969;
1820
-
1821
- /**
1822
- * 164:70
1823
- */
1824
390
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_INTERFACE_CONTAINER = 10747974;
1825
-
1826
- /**
1827
- * 164:76
1828
- */
1829
391
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_INVENTORY_CONTAINER = 10747980;
1830
-
1831
- /**
1832
- * 164:92
1833
- */
1834
392
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_MINIMAP = 10747996;
1835
-
1836
- /**
1837
- * 164:93
1838
- */
1839
393
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_CHATBOX_PARENT = 10747997;
1840
-
1841
- /**
1842
- * 164:94
1843
- */
1844
394
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_TABS1 = 10747998;
1845
-
1846
- /**
1847
- * 164:95
1848
- */
1849
395
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_TABS2 = 10747999;
1850
-
1851
- /**
1852
- * 164:96
1853
- */
1854
396
  static readonly RESIZABLE_VIEWPORT_BOTTOM_LINE_INVENTORY_PARENT = 10748000;
1855
-
1856
- /**
1857
- * 834:3
1858
- */
1859
397
  static readonly SANITY_OVERLAY = 54657027;
1860
-
1861
- /**
1862
- * 631:1
1863
- */
1864
- static readonly SEED_VAULT_INVENTORY_ITEM_CONTAINER = 41353217;
1865
-
1866
- /**
1867
- * 631:2
1868
- */
1869
398
  static readonly SEED_VAULT_TITLE_CONTAINER = 41353218;
1870
-
1871
- /**
1872
- * 631:15
1873
- */
1874
399
  static readonly SEED_VAULT_ITEM_CONTAINER = 41353231;
1875
-
1876
- /**
1877
- * 631:16
1878
- */
1879
400
  static readonly SEED_VAULT_ITEM_TEXT = 41353232;
1880
-
1881
- /**
1882
- * 631:24
1883
- */
1884
401
  static readonly SEED_VAULT_SEARCH_BUTTON = 41353240;
1885
-
1886
- /**
1887
- * 134:1
1888
- */
402
+ static readonly SEED_VAULT_INVENTORY_ITEM_CONTAINER = 41287681;
1889
403
  static readonly SETTINGS_INIT = 8781825;
1890
-
1891
- /**
1892
- * 116:57
1893
- */
1894
404
  static readonly SETTINGS_SIDE_CAMERA_ZOOM_SLIDER_TRACK = 7602233;
1895
-
1896
- /**
1897
- * 116:92
1898
- */
1899
- static readonly SETTINGS_SIDE_MUSIC_SLIDER = 7602268;
1900
-
1901
- /**
1902
- * 116:104
1903
- */
1904
- static readonly SETTINGS_SIDE_MUSIC_SLIDER_STEP_HOLDER = 7602280;
1905
-
1906
- /**
1907
- * 116:106
1908
- */
1909
- static readonly SETTINGS_SIDE_SOUND_EFFECT_SLIDER = 7602282;
1910
-
1911
- /**
1912
- * 116:120
1913
- */
1914
- static readonly SETTINGS_SIDE_AREA_SOUND_SLIDER = 7602296;
1915
-
1916
- /**
1917
- * 300:0
1918
- */
405
+ static readonly SETTINGS_SIDE_MUSIC_SLIDER = 7602274;
406
+ static readonly SETTINGS_SIDE_MUSIC_SLIDER_STEP_HOLDER = 7602286;
407
+ static readonly SETTINGS_SIDE_SOUND_EFFECT_SLIDER = 7602288;
408
+ static readonly SETTINGS_SIDE_AREA_SOUND_SLIDER = 7602302;
1919
409
  static readonly SHOP_INVENTORY_ITEM_CONTAINER = 19660800;
1920
-
1921
- /**
1922
- * 836:4
1923
- */
1924
410
  static readonly STRANGLER_OVERLAY = 54788100;
1925
-
1926
- /**
1927
- * 320:0
1928
- */
1929
411
  static readonly SKILLS_CONTAINER = 20971520;
1930
-
1931
- /**
1932
- * 308:2
1933
- */
1934
412
  static readonly SKOTIZO_CONTAINER = 20185090;
1935
-
1936
- /**
1937
- * 426:12
1938
- */
1939
413
  static readonly SLAYER_REWARDS_TOP_BAR = 27918348;
1940
-
1941
- /**
1942
- * 312:0
1943
- */
1944
414
  static readonly SMITHING_INVENTORY_ITEM_CONTAINER = 20447232;
1945
-
1946
- /**
1947
- * 218:4
1948
- */
415
+ static readonly SPELLBOOK_PARENT = 14286848;
1949
416
  static readonly SPELLBOOK_KOUREND_HOME_TELEPORT = 14286852;
1950
-
1951
- /**
1952
- * 218:5
1953
- */
1954
417
  static readonly SPELLBOOK_CATHERBY_HOME_TELEPORT = 14286853;
1955
-
1956
- /**
1957
- * 218:6
1958
- */
1959
- static readonly SPELLBOOK_LUMBRIDGE_HOME_TELEPORT = 14286854;
1960
-
1961
- /**
1962
- * 218:100
1963
- */
1964
- static readonly SPELLBOOK_EDGEVILLE_HOME_TELEPORT = 14286948;
1965
-
1966
- /**
1967
- * 218:101
1968
- */
1969
- static readonly SPELLBOOK_LUNAR_HOME_TELEPORT = 14286949;
1970
-
1971
- /**
1972
- * 218:145
1973
- */
1974
- static readonly SPELLBOOK_ARCEUUS_HOME_TELEPORT = 14286993;
1975
-
1976
- /**
1977
- * 218:126
1978
- */
1979
- static readonly SPELLBOOK_FERTILE_SOIL = 14286974;
1980
-
1981
- /**
1982
- * 437:2
1983
- */
418
+ static readonly SPELLBOOK_LUMBRIDGE_HOME_TELEPORT = 14286855;
419
+ static readonly SPELLBOOK_EDGEVILLE_HOME_TELEPORT = 14286951;
420
+ static readonly SPELLBOOK_LUNAR_HOME_TELEPORT = 14286952;
421
+ static readonly SPELLBOOK_ARCEUUS_HOME_TELEPORT = 14286996;
422
+ static readonly SPELLBOOK_FERTILE_SOIL = 14286977;
1984
423
  static readonly TEMPOROSS_STATUS_INDICATOR = 28639234;
1985
-
1986
- /**
1987
- * 687:5
1988
- */
1989
424
  static readonly TEMPOROSS_LOBBY_LOBBY = 45023237;
1990
-
1991
- /**
1992
- * 241:2
1993
- */
1994
425
  static readonly TITHE_FARM_LAYER = 15794178;
1995
-
1996
- /**
1997
- * 773:2
1998
- */
1999
426
  static readonly TOA_PARTY_LAYER = 50659330;
2000
-
2001
- /**
2002
- * 481:3
2003
- */
2004
427
  static readonly TOA_RAID_LAYER = 31522819;
2005
-
2006
- /**
2007
- * 28:5
2008
- */
2009
428
  static readonly TOB_PARTY_INTERFACE = 1835013;
2010
-
2011
- /**
2012
- * 28:7
2013
- */
2014
429
  static readonly TOB_PARTY_STATS = 1835015;
2015
-
2016
- /**
2017
- * 28:9
2018
- */
2019
430
  static readonly TOB_HEALTHBAR_CONTAINER = 1835017;
2020
-
2021
- /**
2022
- * 335:31
2023
- */
2024
431
  static readonly TRADE_HEADER = 21954591;
2025
-
2026
- /**
2027
- * 512:66
2028
- */
2029
- static readonly TRAILBLAZER_AREAS_TELEPORT = 33554498;
2030
-
2031
- /**
2032
- * 366:13
2033
- */
432
+ static readonly TRAILBLAZER_AREAS_TELEPORT = 33554512;
2034
433
  static readonly TRAWLER_CONTRIBUTION = 23986189;
2035
-
2036
- /**
2037
- * 366:14
2038
- */
2039
434
  static readonly TRAWLER_TIMER = 23986190;
2040
-
2041
- /**
2042
- * 415:68
2043
- */
2044
435
  static readonly TROUBLE_BREWING_SCORE = 27197508;
2045
-
2046
- /**
2047
- * 418:2
2048
- */
2049
436
  static readonly TROUBLE_BREWING_LOBBY_LOBBY = 27394050;
2050
-
2051
- /**
2052
- * 533:28
2053
- */
2054
437
  static readonly VARROCK_MUSEUM_QUESTION = 34930716;
2055
-
2056
- /**
2057
- * 533:29
2058
- */
2059
438
  static readonly VARROCK_MUSEUM_FIRST_ANSWER = 34930717;
2060
-
2061
- /**
2062
- * 533:30
2063
- */
2064
439
  static readonly VARROCK_MUSEUM_SECOND_ANSWER = 34930718;
2065
-
2066
- /**
2067
- * 533:31
2068
- */
2069
440
  static readonly VARROCK_MUSEUM_THIRD_ANSWER = 34930719;
2070
-
2071
- /**
2072
- * 611:2
2073
- */
2074
441
  static readonly VOLCANIC_MINE_STABILITY_INFOBOX_CONTAINER = 40042498;
2075
-
2076
- /**
2077
- * 611:6
2078
- */
2079
442
  static readonly VOLCANIC_MINE_TIME_LEFT = 40042502;
2080
-
2081
- /**
2082
- * 611:8
2083
- */
2084
443
  static readonly VOLCANIC_MINE_POINTS = 40042504;
2085
-
2086
- /**
2087
- * 611:10
2088
- */
2089
444
  static readonly VOLCANIC_MINE_STABILITY = 40042506;
2090
-
2091
- /**
2092
- * 611:12
2093
- */
2094
445
  static readonly VOLCANIC_MINE_PLAYER_COUNT = 40042508;
2095
-
2096
- /**
2097
- * 611:16
2098
- */
2099
446
  static readonly VOLCANIC_MINE_VENT_A_PERCENTAGE = 40042512;
2100
-
2101
- /**
2102
- * 611:17
2103
- */
2104
447
  static readonly VOLCANIC_MINE_VENT_B_PERCENTAGE = 40042513;
2105
-
2106
- /**
2107
- * 611:18
2108
- */
2109
448
  static readonly VOLCANIC_MINE_VENT_C_PERCENTAGE = 40042514;
2110
-
2111
- /**
2112
- * 611:20
2113
- */
2114
449
  static readonly VOLCANIC_MINE_VENT_A_STATUS = 40042516;
2115
-
2116
- /**
2117
- * 611:21
2118
- */
2119
450
  static readonly VOLCANIC_MINE_VENT_B_STATUS = 40042517;
2120
-
2121
- /**
2122
- * 611:22
2123
- */
2124
451
  static readonly VOLCANIC_MINE_VENT_C_STATUS = 40042518;
2125
-
2126
- /**
2127
- * 611:26
2128
- */
2129
452
  static readonly VOLCANIC_MINE_VENTS_INFOBOX_CONTAINER = 40042522;
2130
-
2131
- /**
2132
- * 595:7
2133
- */
2134
453
  static readonly WORLD_MAP_MAPVIEW = 38993927;
2135
-
2136
- /**
2137
- * 595:10
2138
- */
2139
454
  static readonly WORLD_MAP_OVERVIEW_MAP = 38993930;
2140
-
2141
- /**
2142
- * 595:23
2143
- */
2144
455
  static readonly WORLD_MAP_BOTTOM_BAR = 38993943;
2145
-
2146
- /**
2147
- * 595:26
2148
- */
2149
456
  static readonly WORLD_MAP_SEARCH = 38993946;
2150
-
2151
- /**
2152
- * 595:34
2153
- */
2154
457
  static readonly WORLD_MAP_SURFACE_SELECTOR = 38993954;
2155
-
2156
- /**
2157
- * 595:41
2158
- */
2159
458
  static readonly WORLD_MAP_TOOLTIP = 38993961;
2160
-
2161
- /**
2162
- * 69:18
2163
- */
2164
459
  static readonly WORLD_SWITCHER_WORLD_LIST = 4522002;
2165
-
2166
- /**
2167
- * 235:2
2168
- */
2169
460
  static readonly ZEAH_MESS_HALL_COOKING_DISPLAY = 15400962;
2170
461
  }
2171
462
  }