@deafwave/osrs-botmaker-types 0.8.11 → 0.8.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.
package/README.md
CHANGED
|
@@ -485,22 +485,6 @@ declare namespace net.runelite.api {
|
|
|
485
485
|
*/
|
|
486
486
|
getWidget(componentId: number): net.runelite.api.widgets.Widget | null;
|
|
487
487
|
|
|
488
|
-
/**
|
|
489
|
-
* Gets an array containing the x-axis canvas positions
|
|
490
|
-
* of all widgets.
|
|
491
|
-
*
|
|
492
|
-
* @return array of x-axis widget coordinates
|
|
493
|
-
*/
|
|
494
|
-
getWidgetPositionsX(): number[];
|
|
495
|
-
|
|
496
|
-
/**
|
|
497
|
-
* Gets an array containing the y-axis canvas positions
|
|
498
|
-
* of all widgets.
|
|
499
|
-
*
|
|
500
|
-
* @return array of y-axis widget coordinates
|
|
501
|
-
*/
|
|
502
|
-
getWidgetPositionsY(): number[];
|
|
503
|
-
|
|
504
488
|
/**
|
|
505
489
|
* Gets the current run energy of the logged in player.
|
|
506
490
|
*
|
|
@@ -1496,12 +1480,12 @@ declare namespace net.runelite.api {
|
|
|
1496
1480
|
runScript(...args: any[]): void;
|
|
1497
1481
|
|
|
1498
1482
|
/**
|
|
1499
|
-
* Creates a blank
|
|
1483
|
+
* Creates a blank ScriptEventBuilder for building a ScriptEvent to execute a ClientScript2 script
|
|
1500
1484
|
*
|
|
1501
1485
|
* @param args the script id, then any additional arguments to execute the script with
|
|
1502
1486
|
* @see ScriptID
|
|
1503
1487
|
*/
|
|
1504
|
-
|
|
1488
|
+
createScriptEventBuilder(...args: any[]): ScriptEventBuilder;
|
|
1505
1489
|
|
|
1506
1490
|
/**
|
|
1507
1491
|
* Checks whether or not there is any active hint arrow.
|