Everything posted by Joseph
-
Custom hop method
you see now if you think of it like that then ofc i would use an enum. The op is asking for another way. I just thought he wanted like a list of worlds he can choose from. He creates and array of the worlds he would like to hop to. Now if he wants to get fancy then use the enum.
-
Custom hop method
why an enum, why not an array of worlds.
-
Grand Exchange Price API
I suggest using a map if you feel like using caching
-
COMPLETED (for now) Space Invaders [Java Project]
I always wanted to make a game. I'll come back and check it later. Hopefully I can follow your steps and make my own.
-
Wine Drinker + Seller
Make it dell at the same high price
- Wine Drinker + Seller
-
[Coming Soon] Classic Fletcher: all bows | arrow shafts | cutting & stringing
i dont get it, explain. Nice script botre. it looks promising
-
Standard Mode VS Mirror Mode?
Is use mirror to bot but when it comes to scripting I use standard.
-
Basic example of State-Node Scripting
- i found an error word doc
i lost internet connection before the bot crashed lol. if this i not a bug. feel free to close the thread. ty for reply.- OSBot 2.3.59 - Performance and Patches
For real?- i found an error word doc
i found this within the OSBot folder. It was not there until after i was using mirror client mode and my script crashed. The bot closed on its own and i found this.- Bot World RandomSolver
for those that get error with the timer: change a few thing to this /** * A timer that records the time elapsed since world detection. */ private long timer; @Override public void onStart() throws InterruptedException { super.onStart(); // Create a new timer instance. this.timer = System.currentTimeMillis(); // Set the time to wait before hopping is allowed (30 seconds - 20 minutes). seconds = MethodProvider.random.nextInt(1200000) + 30; } @SuppressWarnings("unchecked") @Override public int onLoop() throws InterruptedException { if (!inBotWorld()) stop(); if (getTimerElapsedSeconds() > seconds) getWorlds().hop(filter); return 1000; } add on: public int getTimerElapsedSeconds() { return (int) (System.currentTimeMillis() - this.timer / 1000); }- Need help on 2 things
How do you know that's not a void method- Construction, in house objects
which is why i put my script on hold for the same reason but im working on core while i wait. edit: nice to see ill have competition- Bot World RandomSolver
- Bot World RandomSolver
nice thank you for this . Not too sure about that 30 min timer delay lol- NMZ Absorption Script
Then write one yourself and stop complaining- NMZ Absorption Script
let me help you out http://osbot.org/forum/topic/67360-dark-nmz/ http://osbot.org/forum/topic/65900-atheorans-guthan-nmz-60k-shared-combat-xphr-gets-all-your-combat-stats-to-99/- Construction, in house objects
iv noticed this before- Warrior Guild tokens script
nice contribute- clicking an item in inventory and to click npc
thats the logic i would use for that. so yes lol :P- clicking an item in inventory and to click npc
this is the basic, to help you out a little public void handleThis() { if (widget is visible) { //handle widget }else{ if (!getInventory().isItemSelected()) { getInventory().getItem("name").interact("action"); sleep(gRandom(400, 100)); }else{ NPC npc = getNpcs().closest("name"); if (npc != null) { if (npc.isVisible()) { npc.interact(); //no arugment should force left click }else{ //handle visiblity } } } } }- Lesser Demon Killer script source with comments [EDUCATIONAL]
Learn learn!- There is no decent crafting script in OSBot :(
Good luck on who ever is going to make this crafter script. My script had been up since osbot 1, rip - i found an error word doc