Jump to content

Zummy

Members
  • Posts

    114
  • Joined

  • Last visited

  • Feedback

    100%

Posts posted by Zummy

  1. On 8/24/2019 at 6:17 AM, heavy_rope said:

    I am an IT professional with a ton of servers lying around my house, hosted cloud computing is the only reason I'm even interested in running a bot farm.

    If you're not trying to go mass scale, you would do much better by buying used server hardware off ebay and setting everything up yourself.

     

    I'm very curious to see how you calculated estimated monthly costs. What you do think running a 100 bots would cost you?

  2. 2 hours ago, 200kwoodcut said:

    YOU GET FREE 300$ with google cloud when you sign up for first time< just keep creating gmails = free hosting

     

    I've worked with Azure for a little bit but I burned through my free credit real quick. I wonder how long $300 will last you.

  3. 42 minutes ago, SyntaxRS said:

    I'm not sure whether you could implement proxy switching via a script, as I don't believe OSBot supports it, however there could potentially be a work around without loading a new client, one of those would be to set the proxy to your outgoing connections as a whole ( or specifying runescape worlds/servers ), similar to a VPN or Proxifier, but that would mean everything including other potential clients you may be running would be using the same proxy ( if that's a issue ). This would work as I know runescape doesn't need to be reloaded in order to be communicating over a new proxy tunnel ( atleast for osrs - RS3 this doesn't work, as it expires your session ).

    Thanks for thinking along! I would need it to be JVM specific tho since I will be running multiple clients at once. However, am I correct in thinking that when a connection drops and reconnects (rotating proxy), you would not be disconnected and kicked to the login screen?

  4. Hello, how can I check if an item can be traded/sold on the GE? I'm getting nullpointers when calling getGrandExchange().getOverallPrice() on an untradable item and you can't null check this operation since it returns an int. Thanks!

  5. 6 hours ago, Token said:

    Definitely not enough context

    I think I was doing the bitwise operation wrong, should be:

    public boolean isBrotherDead(BarrowsBrothers b){
            return (getConfigs().get(brotherConfig) & b.getBitmask()) == b.getBitmask();
        }

     

  6. I'm just repeatedly calling this:

    public boolean isBrotherDead(BarrowsBrothers b){
            return getConfigs().get(453 & b.getBitmask()) == b.getBitmask();
        }

    Not sure if that's enough context.

  7. Hey, I sometimes have problems with config not reading the right values. A varbit mask can return a false but when restarting the script it returns true, so I was hoping there is a way to force reload config values or something. Anyone know how to fix this? Thanks!

  8. 2 hours ago, Token said:

    The answer is yes you can, but I have no idea how to do networking on windows

    Hmm, okay I just need to know what steps to take :) Is there a proper term for what I want? I can't seem to find good information on how to achieve this.

×
×
  • Create New...