Jump to content

Dab in a Lab

Members
  • Posts

    329
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Dab in a Lab

  1. Appreciate the work you're willing to put into your scripts still Before level 60 smithing, the coins are probably ok in the inventory since you have to pay the guy every 10min, but at level 60+ its just a waste of an inventory slot to hold on to them.
  2. Looks like you are fixing the dialogue, but it gets stuck at every dialogue selection when talking to Thurgo for the quest. I have no clue what the bots trying to do, but it takes forever trying to calculate a path after getting 30 smithing. Moves to a spot, stops and calculates, then moves again, and stops... repeat. It looked like it was going to walk all the way to Camelot. Even though it withdrew a Camelot tele from the bank. I ended up manually using it. It also HAD to have lobsters too for some reason, even though they don't have a use It can't WebWalk to the Blast Furnace after completing the cutscene on the boat crashing into the statue It hops worlds for the quests, so it would be nice if it would hop to a random BF world if we wanted to use the coffer and not worry about the pumps and stuff What does GE support do? Just resupply the ores? Can it buy stamina pots too? Varrock tele tabs? When the bot goes back to resupply and it tries to go back to the BF, it withdraws those lobsters again, and does the weird walking to Camelot. Can it just use the minigame tele or walk to the vault in the back left corner of the GE? Noticed that filling up the bucket of water also increases the value for the bars collected Just a couple suggestions: 1). Once the bot puts the ore of choice on the conveyor belt, can it run down to the bar dispenser and be ready to use the bucket of water on it? Right now it stands at the top until the bars are dispensed. It could be more efficient by having it run/walk to the dispenser after dropping off the ore, and having it ready to go by time the bars are dispensed. 2). This may be against osbots rules for SDN scripts, but could it be possible to grab accounts off a text file and load them up? Would be nice to have a list of ready-to-go accounts with members and supplies that your script can just grab and run
  3. Same issue. My own scripts Spits out a login response: 2, but never actually logs in like the response states.
  4. I get this everytime I start the script up
  5. Have you reset your script after adjusting the settings? Break Manager doesn't seem to change settings in the same session
  6. Is it enough to have it like this? https://gyazo.com/59fd56085e2bcf0882f38d00253b9a94 I haven't been able to figure out what its doing when in the src like this. I'm sure its fine, but it also created its own url shortcut to the repository Edit: Also is it necessary to have all the code of the library in my project too? That com.github part in the screenshot contains all the code too
  7. Would I build the maven this library has as a separate .jar file, and then add it to the project like how I would with OSBot at the start of a project? I think I found the precompiled jar version of this library. Similar to what I asked Chris, would I then add it as a library like how OSBot is added at the start of a project?
  8. I've tried to integrate a library off of github last week, and I'm now stuck and not sure what to search to teach myself I have the code in my project, but I can't seem to call it and use it yet. I'm assuming I got it in there correctly too The library also has a Mavern, but I'm not sure what it does. After looking it up, there seems to be a default Mavern people build, but I'm not sure what they then do with it, and the Mavern for this library is obviously different than just the standard one. If I have to, I'd be down to pay someone 5 or 10 bucks to work with me and teach me how to get it integrated.
  9. I see you have a 2 declarations for the bronze bar button. One for null checking and another for interacting. You can just use the interacting declaration and null check that instead RS2Widget bronzeBarsButton = getWidgets().get(270,14); if (bronzeBarsButton != null && bronzeBarsButton.isVisible(){ bronzeBarsButton.interact("smelt") //your sleep } Edit: Just an FYI too, you don't need a sleep for webwalking. I did the same thing when I first started off too, but then realized its not going to continue reading lines until webwalking is done
  10. Whats your ban rate on mirror then? Did the accounts bot multiple sessions, or just the 1 and weren't touched again? Same amount of time botting?
  11. Well I was just showing you how to shorten your code a bit But you could probably grab the object ID when its visible/your next object you need to interact with and do object.interact(); and not put in a string, so it will just click that object regardless of what action is has, or if it even has an action
  12. I'm still getting used to using a function like this, but I think this may work. If you have a bunch of repetitive actions with only minor differences, you can build a function like this and plug in specifiers. In this case your position, the object, and the interaction associated with it. If it doesn't work (haven't tested, and still getting use to using these myself) you can mess around with it. Someone feel free to correct me if theres something wrong/better // How you would use it clickThisShit(Position,Object,"Action") // The one line can replace a block of the repetetive chuncks //Make a function like this in your script private void clickThisShit(Position position, RS2Object object, String action) { if (position.equals(myPosition())) { if (!object.isVisible()) getCamera().toEntity(object); if (object != null && object.isVisible() && object.hasAction(action)) { object.interact(action); new ConditionalSleep(10000, 250){ @Override public boolean condition() throws InterruptedException{ return (!myPlayer().isMoving() && !myPlayer().isAnimating()); } }.sleep(); } } }
  13. Every time it attacks a seagull and its leveling Attack, it clicks on Attack exp style. Doesn't do it for Strength or Defense. Can't seem to notice why When training Attack, the logger will read : Training Attack # Can attack seagull Attacking seagull
  14. Well I wouldn't be where I'm at without them. I'll definitely be watching the new ones though
  15. How modest. Not gonna plug yourself? @corey1996 Watch his tutorials! Followed lesson 0 and lesson 1, then started scripting my own stuff. I had literally no coding/scripting experience before that. You'll learn more as you make more scripts. Also, reference his other 2 tutorials while you're making your own projects. But definitely follow along and build the same script alongside Chris in Lesson 1. Chris's Tutorials
  16. Its still getting worked on right? Hasn't been fixed/patched yet? Some things in my script stopped working like intended today. Want to make sure it was the update that broke it
  17. Like @extatus said. Try if (obsticle != null) { obsticle.interact(); }
  18. Is there anyway to perform an action while your character has been webwalking? I'd like to have an action perform once an NPC is visible, but it completely skips over it, and performs the next code from the WebWalking destintaion.
  19. Someone can correct me if I'm wrong, but I think its the newest OSBot update they pushed. Sometimes a random script other than the one I have selected will start, my webwalking in my scripts break in some areas, and it gets confused with some interactions
  20. Might've just had an "ah ha" moment... Are the "Allowed IPs" the IPs that are allowed to access my ports? Is it not the IP that gets shown when the proxy is in use? Edit: Ya it is... @Keyster99 just confirmed it for me fuck me...
  21. Ya I just sent a second ticket and based off the ticket numbers, theres been 4 tickets created between my first one and my most recent... kinda ridiculous they cant monitor and address ~2 tickets a day. I bought the rotating residential proxies too but I was never given an IP address, even though it advertises randomized residential IPs for a region... I just have my 5 HTTP ports and 5 SOCKS5 ports. Theres a box called "Allowed IPs" where I can add IPs, and a button to add my own personal IP, and then "Proxy Port Flags" for setting up my region of choice... The only time I don't get a Socks Proxy Configuration Error from OSBot is when I put my personal IP in that allowed IPs box Have you had problems with the proxies? I agree though, the support is ridiculous. I'm kinda tempted to submit a chargeback. Maybe I'll threaten them with one first
×
×
  • Create New...