Jump to content

dubai

Scripter II
  • Posts

    204
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    0%

Everything posted by dubai

  1. Yes it's definitely satisfying until you rely too much on AI and have to start methods over from scratch
  2. Hope you don't mind if I just copy and paste this
  3. Was one of my favourites to make actually because It didn't take long at all and almost ran straight away without any errors
  4. Ah gotcha, easy fix I have a question!!! How did you get that epic colourful display name badge thingo that changes colour
  5. Do you mean more packages to organise your classes better? In intelliJ, Right click the project folder you want to add a new package > new > package Then when you want to use a class from that package you just call it like Import myPackage.classInPackage;
  6. I'm trying to find a reason to argue against you, but you have a pretty good point...
  7. This looks like it will work? have you tested it yet?
  8. Ultimately LLMs that can complete the game from; account creation to maxing while beating bot detection. I think thats the end game anyway. With input spoofing, how can we truly detect AI? I mean ethically of course... Thank you!
  9. To be honest I dont think this method of anti ban stratagy is effective at all after testing I think the real magic is when AI is baught into bots to bring them to life. Something I really want to start looking into.
  10. Dubai's OakBanker Chops and banks Oak logs north of falador. -Will only bank logs, not axes. HOW TO RUN: -Start at falador west bank. I wrote this quickly for a farm I was working on so it's kinda messy but it works really well, I've had some huge runtimes on it so thought I'd release it. I plan to start adding mule support into my scripts now so I might come back to this one for that. ------------------------------------------------------------------ DOWNLOAD (Add to your OSBot\Scripts folder) ------------------------------------------------------------------ SOURCE:
  11. Yeah I gotcha, heaps of reasons to add custom breaks tbh. I started doing this but I never finished it... @Czar Where you at
  12. I didn't get the job unfortunately... I also got knocked back on another one since then... I'm not giving up though Glad to keep getting my name out there.
  13. Are you doing this to have you script break early say, when it's at the bank? Interesting approach if so, I disabled osbots break manager completely and just had it sleep until the break was over then let the login solver log the player back in and continue
  14. Sounds like a good excuse to practice C++
  15. Hundreds of euro's O_O what script do you need botting?? infernal capes?
  16. I can get the bot to log out and back in, however can't override the osbot break random solver... any tips! can't find any info for recent osbot versions
  17. Very punny response, thank you These 2 open source projects were some of my early projects, still fun and they do work nicely.
  18. No I don't mean third party clients, I mean private scripts for whatever it is you want to bot, developers can make them pretty easy. Probably the biggest recommendation I could give would be to try a private script in your OSbot setup, probably lowest ban rates.
  19. Dubai's SplashAlcher Splashes while alching for ultimate magic XP without any hitpoints XP. How to run: -Get your splashing gear on (-65 magic attack bonus required) -Have runes in inventory (Alch runes + Runes for splashing) -MUST AUTO-CAST SPLASH SPELL -Start near the bear behind Varrock castle -Enter the item you want to high alch in the popup window EXAMPLE SETUP: -------------------------------------------------------------------------------------------------------- DOWNLOAD LINK - Extract to your OSbot\scripts\ Path. -------------------------------------------------------------------------------------------------------- Source: -------------------------------------------------------------------------------------------------------------------------------
  20. I disagree, I assume there are automatic systems. i definitely noticed it's easier to get banned on a environment after the first ban until i reset it, cycle repeats Have you tried private custom made scripts that only you'll use?
  21. But your mac address and many other things would still be recorded and flagged as a botter
  22. You should try using proxies? your ip is obviously flagged...
  23. dubai

    Trade Handler

    Nice, I might incorporate this into my botfarm scripts
  24. Dubai's OakBurner [BETA] Chop and Burn any Oak Tree! Start this script next to an Oak Tree with your axe equipped or in your inventory with a tinderbox. The script will chop a full inventory of oak logs, and burn them before returning back to the starting tree. (It might wander off while it's firemaking(It handles "You can't light a fire here" and moves to a new spot to keep lighting fires) But the script will return to the starting tree after burning. Nice and simple Onscreen Paint tracking Runtime and XP/LVLs gained. Need some testers on this, I've ran for over an hour without issues, just moving on to other things. If you encounter bugs/crashes please try and screenshot the issue and provide as much info as you can and I'll return to this project for fixes. I've been running it south/west falador and it works really well over 20k FM xp/hr depending on your axe. The bot seems really smooth, especially firemaking. DOWNLOAD: (EXTRACT TO YOUR "OSBOT/SCRIPTS/" PATH) If anyone could upload some screenshots of nice runtimes, that would be awesome! Source:
  25. Hi, i'm currently implementing a custom break handler in my scripts. This can be configured in the scriptGUI. all the logic seems to work apart from getting it to log back in? Can't see anything relevant in the api documentation or I'm not looking in the right places... Any help would be appreciated! In particular: Cannot resolve symbol 'LOGIN' api.getTabs().open(Tab.LOGIN); Here's might BreakHandler class: package extraFeatures; import org.osbot.rs07.api.ui.Tab; import org.osbot.rs07.script.MethodProvider; import java.util.Random; public class BreakHandler { private final MethodProvider api; private final int minBotTime; private final int maxBotTime; private final int minBreakTime; private final int maxBreakTime; private long nextBreakTime; private final Random random; public BreakHandler(MethodProvider api, int minBotTime, int maxBotTime, int minBreakTime, int maxBreakTime) { this.api = api; this.minBotTime = minBotTime; this.maxBotTime = maxBotTime; this.minBreakTime = minBreakTime; this.maxBreakTime = maxBreakTime; this.random = new Random(); scheduleNextBreak(); } private void scheduleNextBreak() { long botTime = random.nextInt(maxBotTime - minBotTime + 1) + minBotTime; nextBreakTime = System.currentTimeMillis() + botTime * 60000L; } public boolean shouldTakeBreak() { return System.currentTimeMillis() >= nextBreakTime; } public void takeBreak() throws InterruptedException { long breakTime = random.nextInt(maxBreakTime - minBreakTime + 1) + minBreakTime; api.log("Taking a break for " + breakTime + " minutes."); api.getTabs().open(Tab.LOGOUT); MethodProvider.sleep(breakTime * 60000L); api.log("Break over, logging back in."); api.getTabs().open(Tab.LOGIN); /// THIS LINE NEEDS TO CHANGE? scheduleNextBreak(); } }
×
×
  • Create New...