Jump to content

botelias

Scripter I
  • Posts

    132
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Posts posted by botelias

  1. New first upload, trying to get that Scripter 1 :)

    After making many private scripts, I've noticed that more isn't always better. Simple scripts seem to have lower ban rates, and are less prone to errors. Here is a very simple goblin killing script for fresh tut-island accounts. It will kill goblins, switch combat styles every few mins if needed (LEVELS DEFENCE! NOT FOR PURES!), and refills food. It features a simple antiban with random mouse movements, right-clicks and breaks. It will stop attacking when there is aprox 1 min left, so it logs out on break-timer without issue.

    Required: Gear to kill goblins, a scimitar (or weapon with same combat style interface; uses clicks since widgets kept bugging out), and trouts. Start anywhere that webwalking works (basically 95% of the world). Don't use resizable (as with any script).

    Happy bottin' !

    simpleGoblins.jar

  2. Hi!

    I have multiple script projects going, and need to buy small amounts of gold quite frequently. Anybody offer good rates and is available on discord most days around this hour?

    Buying 5-10m this time. Tend to buy once or twice a week or so. Paying 0.47-0.53$/m

    Send me PM with your discord name and rate :) 

    I go first and pay btc. Trusted members only please.

    Cheers

  3. On 12/6/2019 at 3:59 PM, daamurda said:

    Nice! Did you make your own script or did you pay for private one? Either way nice accomplishment.

     

    On 12/6/2019 at 2:41 PM, Vi X said:

    Congrats! Did you make your own script or had one of the awesome scriptwriters here make the private script? 

    Thanks!

    Made my own :)

  4. Added another failsafe, should do the trick. 60-98 str, not a single issue :/ Think I got a temporary disconnect and the script never detected the dream ending. 

    Doing some WC, castle wars, and selling/buying on GE. Then rest acc a while. Are odds low of me getting banned if nothing by tomorrow morning?

    Thanks!

  5. Hey!

    Been botting an account to maxed str using my own script. It just bugged out and spam-clicked absorption pots in NMZ lobby for somewhere between 10 seconds and 20 minutes.

    What should I do to lower odds of ban? At 98 str now...

    Thanks

  6. Hey!

    Botting an alt using a proxy on osbot with stealth injection. Is it safe to play my main on runelite; same pc at the same time?
    Or will they risk getting linked & banned via local saved cache? I noticed that runelite has e-mail from bot acc already filled in when started. 

    Cheers

  7. 14 hours ago, Medusa said:

    Nice release.

    Looking at the code I can tell that you aren't using a task-based codebase.

    Everything might get more organized if you start using that 😛

    Got a link to where I can read about that?
    Closest I found was using "modules". Is that the same thing?

    Thanks!

     

  8. 34 minutes ago, BravoTaco said:

    For this you could loop through the inventory and add the ids to a list while checking if the list already contains that id:

    Here is an example. Haven't Tested this, but should work 🙂

      Hide contents
    
    
    private ArrayList<Integer> getItemIdsFromInventory(){
        ArrayList<Integer> itemIds = new ArrayList<>();
        for(Item item : getInventory().getItems()){
            if(item != null && !itemIds.contains(item.getId())){
                itemIds.add(item.getId());
            }
        }
        return getItemIdsFromInventory();
    }

    Also just in case you want to get an id from a certain slot:

      Reveal hidden contents
    
    
    private int getItemIdFromInventorySlot(int slotNumber){
        Item item;
        if((item = getInventory().getItemInSlot(slotNumber)) != null){
            return item.getId();
        }
        return 0;
    }

    Any questions feel free to pm me or reply here.

     

    Thanks!
    I'll make sure to implement that once I've got time!

  9. 12 hours ago, Medusa said:

    Nice release.

    Looking at the code I can tell that you aren't using a task-based codebase.

    Everything might get more organized if you start using that 😛

    Thanks for the tip! I'll look into it. My first javascript from scratch, so the organization is a bit rough indeed 😉

     

    Quote

    does this support 1 defense/1 prayer builds for f2p?

    I'll make sure to add that option once gui is implemented :) Not a hard thing to get running, so should come shortly. 

    Quote

    Will this support selling everything in the bank except for gear/foods or just the loot you get? 

    Just loot for now. If I can find a way to pull item id's from inventory slots, then I could implement all gear/foods. 

    Quote

    Awesome, waiting for progressive combat switching update

    Next thing that will be implemented :)

  10. Unfortunately removed until further notice. Discovered a bug which I do not have time to fix for now. Will re-upload when it gets solved, don't want unnecessary bans to happen :)

    Best regards

  11. On 7/18/2019 at 11:06 PM, Czar said:

    Alright is there any way you can replicate this bug or is it completely random? In any case I will have a chat with the scripters/devs and see if there's anything wrong ^^ :D 

    Done more research now after coming back from vacation. The issue appears to be 100% random, and unrelated to account. Sometimes it works, sometimes it doesn't. If it however does work, it will keep working as long as client is running. Same if it doesn't work.

  12. Hi!

    I keep getting banned quickly when botting with Stealth Injection, even on things like sand crabs. Using normal botting times; 2-3h/day with long breaks. New IP on every account. 

    I currently use NordVPN as a proxy. The bans are macro:ing major.

    Would mirror mode help? Does the NordVPN client apply to Runelite as well, or does it only block IP on browsers? Can't find a way to test the IP on runelite..

    Thanks for the help!

    Cheers

  13. Hi!

    Is it possible to switch gear before loading a new script in CLI (or any other bot manager)?

    Looking to do the following:

    Task 1: Equip melee gear --> Apa Sand Crabs for ~1h

    Task 2: Equip HAM gear --> EXCO Clue Solver ~1h

    Loop:
    >Random task ~1h

    >7-10h break

     

    Thanks!

  14. Hi!

    Just bought Exco Clue Solver. If I use it for  1 month, then wait 1-2 months before paying the 5$/month cost, do I have to re-purchase the entire script for 15$? Or can I renew it for 5$ even after monthly cost is missed?

     

    Thanks

     

  15. 9 hours ago, Czar said:

    Hmm it seems to be working for me if I check getTrade().isFirstInterfaceOpen() before offering an item. can you print in the logger: log("Is first interface open? " + getTrade().isFirstInterfaceOpen() + "."); to confirm it's detecting that you're in the first interface?

    It works, just not always. And when it doesn't work, I have to restart client to get it working again.

    Read similar issues, but no solutions. It hovers over decline button when it doesn't work. 

  16. Yeah, solved it with a similar solution!

    Thanks!

    Do you happen to know how to insert an item in a trade?

    ----------------------------------------------------------------
    public int onLoop() throws InterruptedException {     
            if (trade.isCurrentlyTrading()) {

                    if (trade.isFirstInterfaceOpen()) {
                       
                       trade.offer(2140,1);

    }

    (and a bit more code)

    ----------------------------------------------------------------
     

    ^ does not work.

    It does however work if I place  "trade.offer(2140,1);" right after the onLoop;

    ----------------------------------------------------------------

    public int onLoop() throws InterruptedException {     

    trade.offer(2140,1);
            if (trade.isCurrentlyTrading()) {

                         if (trade.isFirstInterfaceOpen()) {     

    }

    ----------------------------------------------------------------
     

    ^ does work.

×
×
  • Create New...