Jump to content

Laurow

Lifetime Sponsor
  • Posts

    22
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Laurow

  1. 2 hours ago, Kramnik said:

    Hi, you mean you can't hop past 463/464. I checked my bot which hops world on few occasions and it was in 522 so seems everything is fine for me 🤔

    Yea my script hops worlds simultaneously, but when they're at world 463 or past it they keep getting stuck in a never ending cycle without hopping, whilst the code is literally the same as all previous worlds after triple checking it

  2. Hello, has anyone experiencing problems hopping worlds with their scripts? After today's update, my script wasn't able to hop past world 463/464 and every world past those. For all the "lower numbered" worlds it's still working perfectly, but I think the API below needs to get updates, since is might be buggy post-update

    getWorlds().getCurrentWorld()

     

  3. You'll eventually get banned, it's just a skill to enlarger the lifespan of your account, therefore try using:

    Not-heavily botted methods
    Findling low click intensity methods
    Private/selfmade scripts
    Residental proxies

    Some people convince others to use mirror mode for the cost of using more CPU, but I've got close to no bans with injection. Also just try a lot of stuff with accounts you're not willing to lose, trial and error + patience will get you very far :)

  4. Hello, does anyone have an up-to-date tutorial about setting up your VPS (Ubuntu 18.04) for botting? Every tutorial resulted in Putty crashing but all of them were 2+ years old, which might've been the reason

  5. 17 minutes ago, Kyocera said:

    I'm currently using a server from Strato hosted in Germany, first 6 months are 1 euro a month and after 15 euro a month. You'll have to install everything through cli though, even your interface. 4 vCPU's and 8gb ram.

    You have to buy a years worth of vps though.

    Totalling to 96 euro for a year.

    @Kyocera That one looks very tempting to go for since it's viable for The Netherlands, thank you :D

    20 minutes ago, lukey372 said:

    Yeah but the difference is you're usually sharing an over crowded dedicated server on your VPS. All your resources are shared usually CPU/RAM/Bandwidth.

    @lukey372 Sounds like daylight robbery, does that only occur on cheap/public VPS's or on the private/premium plans I was aiming to get?

  6. 8 minutes ago, Muffins said:

    I recommend getting a dedicated server rather than a VPS. VPS is shared resources, Dedicated server is all for you.

    I've heard that dedi servers are more expensive compared to VPS's and with how much CPU/RAM they contain. I might be mistaken tho, u got any recommendations so I can compare? :)

  7. Hello, I'm planning on expanding my botfarm, but I need some VPS's suited for OSBot to get many more accounts running, whilst my computer can only handle 4 bots max (injection). Anyone knows a good VPS which they can vouch for?

    And also, does webwalking really bump up the CPU (since I make all my scripts myself) and so ain't it recommended to have webwalking scripts on a VPS?

  8. 11 hours ago, Naked said:

    There's a bunch of things here.

    1) Never user a while loop in a script. There's always an alternative.

    2) You don't need to explicitly close most interfaces or open a tab for world hopping.

    3) You should use if else statements wherever possible.

    Realistically, your script should look something like:
     

    
            log("Time to hop!");
            if(getWorlds().getCurrentWorld() == 302){
                if(worlds.hop(303)){
                    Sleep.sleepUntil(() -> getWorlds().getCurrentWorld() == 303, 5_000);
                }
            }else if(getWorlds().getCurrentWorld() == 303){
                if(worlds.hop(304)){
                    Sleep.sleepUntil(() -> getWorlds().getCurrentWorld() == 304, 5_000);
                }
            }

    You could also use a switch statement, or make a nice clean algorithm for the next members worlds in the list, but I'm too lazy to write that.

    Thanks a lot Naked :D , the while loop probably broke my script and it seems to be working perfectly after adjusting to what you sent me. This will keep me away from upcoming obstacles in the future hopefully.

    • Like 1
  9. Hello, I'm recently experiencing issues with hopping worlds, although 2 days ago it worked flawlessly in testing. It seems to not scroll to the world tab menu and also not click on the next world as stated. I tried opening the world selector before starting my script but nothing seemd to do the job. Is my script suddenly broken or is it something with OSBot what's causing this?

     

    (I'm kinda new into scripting, also without any programming experience, so I'm here just testing the waters so please don't offend me in the way I code things lmao, I'm already happy if it does the job :) )

            // Hop to the next world
            log ("Time to hop!");
            sleep(random(1500,2500));
    
            getWidgets().closeOpenInterface();
            
            sleep(random(300,500));
    
            getLogoutTab().open();
    
            while (getLogoutTab().isOpen()) {
    
                if (worlds.getCurrentWorld() == 302) {
                    worlds.hop(303);
                }
                if (worlds.getCurrentWorld() == 303) {
                    worlds.hop(304);
                }
                if (worlds.getCurrentWorld() == 304) {
                    worlds.hop(305);
                }
    
    etc etc

     

×
×
  • Create New...