Everything posted by Explv
-
beating it
HustlethAlt2 reported for: Botting ✅ Scamming ✅ Offensive Language ✅
-
Explv's OSBot Manager
Updated and re-uploaded 2017/12/04 - v 7.5: Fixed proxy editing Code refactoring Skip broken local scripts Escape OSBot parameters
-
Bot not working
Are you using CLI ( running OSBot from the command line) / an external application to launch OSBot? Are you using a proxy? Is your internet restricted in any way? Can you use the official osrs client? Are you using Java 8 and not any other version?
-
Explv's OSBot Manager
Reuploading tonight, will be adding more features soonish
-
Explv's OSBot Manager
Sorry forgot, will upload tonight. Accidentally leaked some private info, so just nuked the repo.
-
Hip-Hop, Flips, Lo-Fi, etc. Sharing Thread
Lo-fi is the goddamn best shit
-
GroundItems see how many there is?
If the item is a stacked item then what you posted should work. If it is not however, then it will be a little more complex. If you don't care if the ground items are all in the same position then you can do: List<GroundItem> items = getGroundItems().filter(getGroundItems().getAll(), new NameFilter<>("Item name")); if (items.size() >= 28) { ... } If you want to check if the ground items are all in the same stack, then it is a little more complicated. I *think* there is a way to get the stack in the API but i'm not sure. I can post some code if you really need.
-
Explv's OSBot Manager
Yah, me dun did a goof, so me delete. Long storyerino. Will b reuploading this weekenderino, maybe b uploading new version, we will c
-
ALL Chatbox users unite
Could always use discord brö
-
LocalPathFinder with flags
Use your noggin and Google "osrs clipping flags" (what they are called in the API description) Pretty sure you don't need to specify that parameter though.
- [$100 RANK] [LT SPONSOR] Selling starter main! Bidding starts at 100k [SUPER TRUSTED][NEVER SCAMMED]
- Explv's Walker
-
Wilderness ditch, webwalk help
You could maybe try handling the ditch crossing yourself. The delay before might be an issue where WebWalkEvent takes a while to break, i'm not really sure though.
-
Wilderness ditch, webwalk help
You mean it takes 5-10 seconds to click the widget?
-
Wilderness ditch, webwalk help
@sonda In your break condition: return widgets.get(475, 11).isVisible(); You need to make sure the widget returned by .get() is not null before calling isVisible. Otherwise an NPE will be thrown.
-
Music - Tune In
You seem to think that everything sounds like mumble rap (hint, it doesn't) It's pretty good man, good job
-
OSBot 2.4.147
Good decision to add the old logger back
-
Items in bank
for (final Task task : tasks) { if (task.canProcess()) { task.process(); break; } } Please see my edited comment, I did not fully read yours.
-
Items in bank
When you loop through the tasks, you could always break the loop once you process a task so that it starts over from the top.
-
Items in bank
Really depends on what script he is making.
-
Items in bank
That depends on whether he plans on losing his equipment during the script. If he only needs to check once, why cache?
-
Items in bank
Except he doesn't need to cache anything.. The structure of his code is the problem.
-
Items in bank
Why don't you just check if the player already has the items in their inventory / equipment? If they don't then check the bank If they still don't then go to GE. Sounds like the structure of your code is borked ("Task" pattern sucks)
-
Music recommendations
My chill playlist. There's probably a few trash songs in there because i'm too lazy to clean it up, but I enjoy it.
-
Move to next tree in a wide area?
Yes you will need to use more than one Area: You will need to implement some logic where if there is no tree in your current Area, walk to the next Area.