Jump to content

zwaffel

Lifetime Sponsor
  • Posts

    232
  • Joined

  • Last visited

  • Feedback

    100%

Posts posted by zwaffel

  1. 9 hours ago, Token said:

    Are the results affected by the reaction time value? 

    Seems to be unaffected by the reaction value.

    4 hours ago, Czar said:

    Mirror client hooking is key, make sure you are logged out during the whole process, otherwise you will get 0 npcs 0 items 0 objects. So stay logged out the whole time, once the clients hook, login manually, let the clients load by walking around a bit, opening interfaces etc, then you're set to either bot or develop scripts.

    Tried this but it didn't change anything, still getting the same random results.

  2. Mirror client version : (x64 to x32) v3.07.181

    Console output / terminal output: NA

    Crash report if a crash occurred: NA

    Script that you ran: Self made not on sdn.

    Hooks that failed.: none

    JVM/Browser bit version (32 / 64) : (build 1.8.0_201-b09) - 64Bit

     

    While looking for GroundDecoration on mirror mode i always seem to get undefined results.

    Sometimes he finds nothing, sometimes he finds half of what he should find. If i run the exact same code on stealth injection i will not encounter this problem and everything will work as it should.

    private List<GroundDecoration> getAllDeco()
        {
            List<GroundDecoration> decoList = new ArrayList<>();
            for (RS2Object object : getObjects().getAll())
            {
                if (object != null)
                    if (object.getClass().equals(GroundDecoration.class))
                    {
                        GroundDecoration deco = (GroundDecoration) object;
                        if (!deco.getModel().isOutdated())  // this line will make it break for mirror mode. 
                            decoList.add(deco);
                    }
            }
            log("decoListSize : " + decoList.size());
            return decoList;
        }

    The bug seems to be at if (!deco.getModel().isOutdated()) when this line gets removed there is no difference between injection and mirror mode.

    log from mirror mode.

    gMhJINk.png

    It should have print 7 every loop.

  3. Are you tired of getting banned?

    Do you fear the ban hammer on your near maxed main ?

    Are you looking for accurate ban rates but no one is willing to share them with you ?

    Fear no more this next tip will change the way YOU bot, it has a 100% chance to NOT get you banned for botting.

    Spoiler

    Play legit, don't bot on an account your not willing to lose

    /thread

    • Sad 1
    • Boge 1
  4. Yo eagle ran into a problem,

    I have a profile to plant fruit trees, normal trees, do allotments and herbs.

    Problem with this is he will try to take everything into his inventory all the saplings, seeds and compost. Making his inventory near full (1spot left) when he than goes to the first allotment he wil take the tomato from it and have a full inventory instantly. He notes the one tomato but this results in the same a full inventory.

    After that he just stands there. Is it possible he could bank for like herbs/allotments do all of those than rebank for fruit trees and normal trees.

    This way his inventory shouldn't be full and i can use my profile that farms most things at once.

    Also i prefer to NOT pay for the trees protection, its more expensive to pay for every tree patch than to let the tree just die occasionally.  Could you add an option so we can chose to either pay for the protection or to not pay for its protection

     

  5. Yeh just add timeout between the lines. One more thing, you have to remove the debug parameter because it will use your cli window.

    Edit: If you want to start multiple with debug enabled you can make a bat files that calls the other bat files.

    start call bot1.bat

    timeout /t 5

    start call bot2.bat

    start makes it run in a new window and call "calls" the new file.

×
×
  • Create New...