Jump to content

Delision

Scripter II
  • Posts

    95
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Delision

  1. 10 hours ago, GameDance said:

    Is this script still getting updated?

    Yes, but Blast Mining has become a hotbed for bans the last couple months ever since Jagex took note of the bots there. I can give you an auth for the script if you'd like but it's not nearly as safe as it once was.

    • Sad 1
  2. 10 hours ago, AnimalMother said:

    Thanks for the input, interesting. You think it is not worth to create one as public script for scripters? I mean considering the complexity you could probably charge a lot, or on monthly basis...

    That's certainly a possibility, but there are a few limiting factors as to why we probably haven't seen a public one so far.

    1. Difficult to code. As you said there are few things harder to code than something as dynamic, complex, and skill-intensive than The Gauntlet/Corrupted Gauntlet. This means there's not many scripters who would be even capable of writing a script like this.
    2. High requirements. The Gauntlet of course requires the Song of the Elves quest line to be done along with good stats. This means there's not a lot of people who even have accounts that could run the script, and if an account got banned it would be hundreds of hours to put into a new account to get the requirements for it.
    3. Low return on investment. Because few people would even have accounts to run a script like this, not many people would likely buy it. So either the price would have to be extremely high or else it wouldn't make much money due to low sales.

    With all that in mind, there certainly are Gauntlet scripts out there somewhere. If you stand outside The Gauntlet long enough you'll see accounts with minimum requirements for The Gauntlet and high KC with pretty much no other boss kills. The reason these scripts are probably kept private is for the reasons stated above. You could make a ton of money if you had just ~10 accounts running a script like this, so they likely make far more money from selling the gold and staying under the radar with low bans than they would selling the script publicly to a rather small customer pool and risking getting their script more attention and increasing bans.

    Even still, it's possible one of the very talented scripters on OSBot or another forum could put in the time to creating a public one in the future.

    • Like 1
    • Heart 1
  3. The reason this is happening is due to this:

    new ConditionalSleep(5000) {
    	@Override
    	public boolean condition() {
    		return bank.depositBox.open();
      }
    }.sleep();

    The line: return bank.depositBox.open(); is a function that tries to open the deposit box and returns true if it executes the action, so basically you are clicking to open the depositBox and then your conditional sleep is opening it again. What you want to do here instead is use the isOpen() function:

    new ConditionalSleep(5000) {
    	@Override
    	public boolean condition() {
    		return bank.depositBox.isOpen();
    	}
    }.sleep();

     

    • Like 2
  4. 17 hours ago, pgrewal said:

    Nice bot, maybe you can add the option of restocking, maybe an option to switch to another fruit to bypass buy limit

    Good suggestion! Will definitely look into adding these in future updates 🙂

  5. 4 hours ago, BloodyNoah said:

    Would be nice if it had like world hopping and auto leave when a pmod is recognized

    I can definitely add world hopping in the future! As for recognizing pmods, I'm not sure if there's a way to recognize them with the API unless I had a list of their names.

  6. Most mobile bots are just color-detection bots using AHK. I've done the same thing for free using BlueStacks (Android emulator) and downloaded OSRS mobile on it, then write an AHK script. Detection is still atrocious on it, you can bot nearly anything you can easily make an AHK or even a macro for and run it for hours. I've gotten multiple accounts to 99 cooking and crafting through wines and glass blowing where I literally run the accounts ~12 hours a day getting 6 hour logged. The only time I've heard of people getting banned using mobile bots is with high profit things like Blast Furnace or Super Glass Make.

  7. 51 minutes ago, tstudent said:

    If you babysit your bot and talk to people are you safe? 

    Using paid scripts and mirror.

    I would say no. Some people claim that talking has reduced their ban-rates, but plenty of others have tried this and still been banned just as quickly.

  8. 1 hour ago, Khaleesi said:

    Ya could be, maybe also appearence could be checked, where ertrain accounts wearing the same gear are more likely a bot or something.

    The last time I went through their Github, they were reading in what the player is wearing, but it wasn't doing anything with that information. Someone did mention in a YouTube video that they wanted to use it to make assumptions in the future though I've heard.

    • Like 1
  9. 13 hours ago, notmynameorisit said:

    Oooh. I've been looking for something like this. I don't have an account ready (that I'm willing to risk) unfortunately, otherwise I'd happily test it. I may make a new account with this script in mind though.

    Authed. Please let me know if you have any feedback when you get a chance to use it 🙂

    • Like 1
×
×
  • Create New...