Everything posted by Explv
-
Explv's Map
The source code is publicly available here: https://github.com/Explv/Explv.github.io
-
Explv's Map
Map has been updated to latest. If it does not show, empty your browser cache and reload.
- Explv's OSBot Manager
-
Explv's Map
I'll update it when I get the chance, thanks!
-
Explv's OSBot Manager
UPDATED 2016-11-24: - Added copy/paste functionality - Added Ctrl-c copy keyboard shortcut - Added Ctrl-v paste keyboard shortcut - Added delete keyboard shortcut
-
Widget tutorial request
You can get them using filters like in the example you posted, and then just store the result. You would only need to do it once and it wouldn't be that inefficient
-
Widget tutorial request
Enable widgets in options. Hover over the widget, you will see the widget IDs in the same colour as the box surrounding your widget. Input those IDs into the debugger
-
Three Scripts I Wrote This Afternoon Fisher,Feather_Collecter/Chicken_Killer, Stunner
What's with the //********************************************************************************************************* ?
-
Explv's AIO [13 skill AIO in 1 script]
The tutorial bug is a new update to tutorial island, haven't had the time to fix it yet, but will do it ASAP, hopefully tonight Thanks for the fishing bug report, I will take a look at that too.
-
Is there anyway to assign hotkeys to scripts?
Do your scripts have a completion point where they stop? Or do you have to manually stop the script?
-
Is there anyway to assign hotkeys to scripts?
Do you have access to the source code of these scripts?
- Explv for Scripter 3
-
Explv's OSBot Manager
Sure, I can add some kind of grouping functionality like that
-
Explv for Scripter 3
- Problem with mining
I wrote a snippet for this a while ago: http://osbot.org/forum/topic/88389-mining-rocks-with-ore-no-ids/- Explv's OSBot Manager
It will work with any script, if the script has no CLI parameters, just leave that field blank- status of GE selling slot
if (getGrandExchange().getStatus(GrandExchange.Box.BOX_1) == GrandExchange.Status.PENDING_SALE) { }- status of GE selling slot
You can get the status for a specific box like so: GrandExchange.Status status = getGrandExchange().getStatus(GrandExchange.Box.BOX_1); Where the Box value is from BOX_1 to BOX_8: And the status' returned are: INITIALIZING_SALE FINISHED_SALE CANCELLING_BUY INITIALIZING_BUY COMPLETING_SALE PENDING_BUY FINISHED_BUY CANCELLING_SALE PENDING_SALE COMPLETING_BUY EMPTY- Explv's OSBot Manager
A configuration should be highlighted in green while the client that the configuration was run on is open.- getArea of npc?
You can use an AreaFilter: NPC warrior = getNpcs().closest(new NameFilter<>("Al-Kharid warrior"), new AreaFilter<>(area), Character::isAttackable);- No more org.osbot.rs07.script.RandomBehaviourHook ?
I did not misunderstand what you are trying to do. The registerHook method has been removed from the API, to achieve what you want to do, you will need to disable all randoms, and write your own login handler, like this: http://osbot.org/forum/topic/109560-a-simple-login-handler/- No more org.osbot.rs07.script.RandomBehaviourHook ?
You can now disable randoms all together using the: -allow norandoms CLI flag, and then write your own custom login handler- Explv's OSBot Manager
UPDATED 2016-11-20 (Again): - Fixed error dialogs not displaying - Fixed not being able to add proxies - Added context menus, you can now right click on table rows to use options- Explv's OSBot Manager
Sorry about that, issue has been fixed- Explv's OSBot Manager
Sure I will add that in the next update - Problem with mining