Jump to content

Jarl

Scripter II
  • Posts

    58
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Posts posted by Jarl

  1. Though I agree VPN isn't good for botting, I can't recommend proxies as there's no way to tell if they are clean/dedicated or not.

    To connect via vnc when on a vpn, you can google "ssh into a server on vpn connection". The issue is packets are routed through the vpn so usually people add iptable rules so you don't route traffic through the vpn when connecting with your own ip.

  2. 12 hours ago, Czar said:

    Highly recommend US/UK/West europe proxies, atm it's happening to me too especially when on vacation/abroad :feels: 

    Imo, it has little to do with the geolocation of the proxies. I think jagex is likely flagging IPs based on the ASN, basically they can check who's announcing the IPs and based on that they can flag IPs. Some IPs are clearly recognizable datacenter IPs, while some are not. However, I think datacenter IPs are okay as long as they are not dirt cheap (which leads to bad reputation and abuse -- if too many people on the same subnet bot runescape then something's off with that whole block of IP)

  3. You probably could use those IPs, but you might be paying quite a lot for those IPs unknowingly. Also I think it's odd that you have 33 usable IPs which is not a normal allocation. Outside of ovh, IPv4s all cost at minimum $1/monthly per IP and I have never seen anyone offer more than 5 IPs for free.

  4. It looks like you are compiling your jar with java 9. Try to add this to your pom

    <properties>
        <maven.compiler.target>1.8</maven.compiler.target>
        <maven.compiler.source>1.8</maven.compiler.source>
    </properties>

    And compile using maven and see if you still get the same error. If you don't get the same error, then that confirms you compiled using the wrong version. To stick with maven, you may need to use a plugin to include all dependencies though. (Note that the jar won't be in the same directory as when you build directly on intellij unless you set the path)

  5. Cloud is almost like a marketing term which makes the price tag slightly higher. Well, cloud can still be affordable but big names like gcp definitely charge more than less well-known providers. I haven't compared prices directly but I'm pretty sure clouds like hetzner/scaleway are cheaper. Heck, even those more known ones like digitalocean/vultr/linode are probably cheaper.

  6. 13 hours ago, Psychotechno said:

    This doesn't work for me.... When I put in something like this:

    
    WebWalkEvent dungeonWalk = new WebWalkEvent(DUNGEON);
    dungeonWalk.setEnergyThreshold(;
    ;
    "In Desired area";

    It still enables run somewhere in the middle of the webwalk. Any help would be appreciated. 

     

    Try copying your  code properly. What you have here won't even compile. You were supposed to set energy threshold to something higher than 100 eg. 101

  7. You can multithread but it seems there's not much utility in multithreading and the bot isn't really designed for multithreading so you will have to implement many things yourself to multithread yourself. Some things work asynchronously by default like onpaint and camera functions if I am not wrong. You can either start threads or make osbot events and run them asynchronously.

    Generally, you extend methodprovider for the methods and import classes for the functionality you need. The main class extends script which gives you the methods. Just like any other library you would need to import stuff.

  8. 5 hours ago, Deceiver said:

    might be able to find one from lowendbox.com 

    I did say to google low end vps, but that's the wrong place to look. That particular site has lots of shitty hosts that close up quick/provide shitty service. You would have to look through those low end forums for better deals/hosts.

    That said, you might still get a deal that's too good to be true on lowendbox. The downside could be that the host might disappear anytime. Or something's being oversold really hard. Also, take note that swap ram on openvz virtualization is NOT ram. And that openvz tends to be very oversold and isn't good for running java. (Seems like lowendbox has many openvz offers)

  9. Just to add on, you should pay attention to weapons with different styles/xp types. Eg. abyssal whip 

    You would think an attack style like "slash" would always give you the same xp, bur that's not the case.

    Also, configs can help you check what spell you are autocasting. (You would need widgets to select spells though)

  10. 7 hours ago, Kramnik said:

    Contabo doesn't provide good value thought. Stopped using their services as I had 2 VPS'es which should run like 12 bots, 16GB RAM, 6 cores, but even when running 6-8 after the night I often find that server completely shut down with all the bots. Multiple emails to support haven't yield any progress, just offered to buy a more expensive plan

    There's various reasons why this could have happened. The most likely reason is memory ballooning. Simply put, they oversell too much ram and there isn't enough ram for everyone. There's so many other possibilities but I couldn't say for sure as I don't use contabo. But compare what you're getting at contabo versus the other guy who advertised his sale thread here. I would say contabo is good value. Maybe you can ask to be swapped to a newer node with epyc cpu and ask them to lift i/o limits. (They do this for free) Or just run a few less bots until you stop shutting down.

    If you want even better value, you would have to keep up with the vps market or go with dedicated. But $12 monthly to run 2 bots is a bit too pricy.

    • Like 1
  11. Well, you could get those free trial credits at many different vps providers as a new customer. You don't need many resources to run 2 accounts. You would need 2 GB of ram and 1 core is probably fine, but if you are constantly maxing the 1 core, many vps providers will be unhappy.

    Contabo seems to provide very good value when you run many bots at once. For just 2 bots, though... You will have to look around for a good deal. You would have to google for low end vps. Or you could just go with hetzner which is quite good value, though not quite as good value as contabo.

    • Like 1
  12. 48 minutes ago, Nbacon said:

    Why would you care if the interaction is succesful? you just click and move on and if it fails come back with a second(slower) pass

    I agree, I think it's better to not check if interaction is successful. This way, you won't always open items in the perfect order every time.

    • Like 1
×
×
  • Create New...