Everything posted by Explv
-
OSRS Max Cash Stack glitch?
I managed to sell 10bil to a gold supplier before the rollback started , thinking about retiring now
-
Explv's AIO [13 skill AIO in 1 script]
All fixes released & available on the SDN.
-
Explv's AIO [13 skill AIO in 1 script]
Yep you're right, sorry about that. I have pushed a fix. I will @ you when the SDN is updated.
-
Explv's OSBot Manager
Done. Updated 2018/07/11 - v8.2: NOTE THAT WHEN LOADING AN EXISTING CONFIG, THE CONFIG WILL BE SET TO USE ALL WORLDS. YOU WILL NEED TO UPDATE ANY EXISTING CONFIGS MANUALLY. - Now automatically loads worlds from the OSRS website - New world selector for better customisation:
-
Need help with code optimization
You can use the generateBotMouseEvent function to move the mouse instantly to another point: public void moveMouseInstantly(final int x, final int y) { getBot().getMouseEventHandler().generateBotMouseEvent(MouseEvent.MOUSE_MOVED, System.currentTimeMillis(), 0, x, y, 0, false, MouseEvent.NOBUTTON, true); }
-
Explv's OSBot Manager
I will update the manager tomorrow to automatically load worlds from the osrs website. Thanks
-
Explv's AIO [13 skill AIO in 1 script]
Pushed a fix, seems to be an issue with the JSON library I am using. I will check if there are any other occurrences of this issue in my code. Fix will be released when the SDN is next updated.
-
Explv's AIO [13 skill AIO in 1 script]
Pushed a fix for this. Basically the script doesn't have control over the cursor, but it continues to paint the "bot's cursor" even when the script is paused. Now when the script is paused the mouse will stop being painted which should hopefully prevent this confusion. I have also updated my custom timer & skill tracker to include pause functionality. Now when you pause the script, the paint's timer will pause, and XP tracking will pause. This will result in more accurate xp/hr readings. Changes will be available when the SDN is next updated. Thanks for your bug reports!
-
Explv's AIO [13 skill AIO in 1 script]
Pushed a change to add a "Wait for completion" option to grand exchange tasks. The option will be enabled by default (wait for the buy/sell order to finish before proceeding to the next task), but you will be able to disable it. It will be available when the SDN is next updated.
-
Explv's AIO [13 skill AIO in 1 script]
Pushed a fix for this, it looks like they changed one of the widget actions. The fix will be available when the SDN is next updated.
-
Checking and toggling shift dropping
Please note one of the widget actions changed, I have updated the code in the original post.
-
Explv's AIO [13 skill AIO in 1 script]
Thanks, I guess they changed something to do with the shift drop option, I will fix that today. Regarding "Get's stuck on waiting for an individual order to fill on grand exchange". It isn't stuck, that's how I intended it to work. The problem is there may be cases where for example, you want to sell x item for y amount, and then use the money you got from selling that item to then buy something else. I can add an option to not wait for buy/sell completion though. Will take a look at doing that today too. Will take a look at the pause issue, not sure if it's something that can be easily fixed though.
-
Explv's AIO [13 skill AIO in 1 script]
Please PM me your config file so I can take a look.
-
Explv's AIO [13 skill AIO in 1 script]
Script is updated on the SDN, so CLI should now work. Just provide the name of the config file. I have also added a context menu to tasks in the GUI. If you right click on a task there will now be a delete option.
-
Mining rocks with ore [No IDs]
I just noticed this was missing a couple of colours, updated original post. Also changed the function in the enum from getClosestWithOre() to hasOre().
-
Explv's Scripting 101
Finished off the GUI section. Still not happy with it (don't think it is very tidy or well explained) but it is better than it was before. I may revisit again in the future.
-
Explv's AIO [13 skill AIO in 1 script]
I have pushed some code to add CLI functionality. Once the SDN has been updated you will be able to pass the config file name as the script parameter, for example, woodcutting.config and all the settings will be loaded automatically. I will @ you again when the SDN has been updated. Thanks!
-
Explv's AIO [13 skill AIO in 1 script]
I don't believe the script currently supports CLI. I will take a look at adding it today, I'll keep you posted.
-
Explv's AIO [13 skill AIO in 1 script]
Fixes now released Cannonball smithing also now available
-
ForsakenCutter(First Script)
FYI most of the bank areas can be found here: https://osbot.org/api/org/osbot/rs07/api/map/constants/Banks.html And you can walk to the closest bank using getWalking().webWalk(Area[] bankAreas), no need to write your own sketchy logic for it. When you pass an array of areas to webWalk() it will walk to whichever Area is closest.
-
My first ever script
-
Explv's AIO [13 skill AIO in 1 script]
Update on my previous comment: "Pushed a fix for this. Unfortunately OSBot's API is currently broken and cannot charter ships. I may write a hacky fix for this depending on how long it takes the dev to fix the API." I have now pushed a "hacky fix", musa point fishing should work when the SDN is next updated.
-
Explv's AIO [13 skill AIO in 1 script]
I have added a failsafe to agility. It seems like sometimes the interaction fails because the camera is at a weird angle. Hopefully my change should prevent this from happening in the future. The change will be added when the SDN is next updated. Thanks
- Explv's OSBot Manager
-
Explv's AIO [13 skill AIO in 1 script]
Taking a look at this now.