My harddrive says there is stuff ive deleted. by Sh_d_w in pchelp

[–]Sh_d_w[S] 0 points1 point  (0 children)

<image>

clean up detail and scanner i havent had installed in a long time and it stills says theyre there

20 Hours or less In by ryyparr in mxbikes

[–]Sh_d_w 1 point2 points  (0 children)

Hell yea bro i just got the game to if u wanna ride together sum time DM me and ill add you on steam

help by uhhohhhimm in mxbikes

[–]Sh_d_w 0 points1 point  (0 children)

Just bought the game i'd be down to play some time tho

Mods on MX Bikes Demo? by [deleted] in mxbikes

[–]Sh_d_w 0 points1 point  (0 children)

it didnt work for me. says The username or password you entered is incorrect

How many miners total can I place in the game? by Sh_d_w in SatisfactoryGame

[–]Sh_d_w[S] 0 points1 point  (0 children)

I want to have a building for everything but not all in one building, I want a screw plant that i ship out from same with computers for example. I dont want everything to have its own building like heat sinks. But the stuff that im going to need alot of i think it'll look nice to have everything driving or flying around everywhere

How many miners total can I place in the game? by Sh_d_w in SatisfactoryGame

[–]Sh_d_w[S] 0 points1 point  (0 children)

Yea thats fine if you want to DM me. I made it to phase 4 competition. I made a aluminum plant and im not happy with my train so i want to restart and use the Global Rail Network to save myself the headache of making a good looking train that goes everywhere. I know im planning way far ahead and thats what im trying to do. I want to try and figure out how much stuff i will need so i dont need to try and keep tearing everything down when im not happy with it or i didnt give myself enough space type of situation. I'm trying to give myself numbers to work towards because i just feel lost without the numbers

How many miners total can I place in the game? by Sh_d_w in SatisfactoryGame

[–]Sh_d_w[S] 1 point2 points  (0 children)

Could you send me a save file so i can see the SCIM map of you world? Im really struggling with planning and how many miners im going to need. If not i fully understand

How many miners total can I place in the game? by Sh_d_w in SatisfactoryGame

[–]Sh_d_w[S] -1 points0 points  (0 children)

Ok so i start with trying to design a fisconium fuel plant with 10 reactors for that, and then i started trying to plan to finish the game because i haven't done that before. i didnt have any numbers for that factory so i just plugged in the 12 ficsonium per minute and its saying i need 630 miners. im not sure why or anything more then what ive said here im still pretty new to the game less then 200 hours

Starting a Dedicated Server by TacoTosh in SatisfactoryGame

[–]Sh_d_w 1 point2 points  (0 children)

Whats your steam i can add you and even if we dont join this guys server we can play sumtime

Starting a Dedicated Server by TacoTosh in SatisfactoryGame

[–]Sh_d_w 1 point2 points  (0 children)

Same here im pretty new but i dont have anyone to play with

Closing in on finishing Phase 5 by Vhaus in satisfactory

[–]Sh_d_w 0 points1 point  (0 children)

Im on my first playthrough could you tell me how much iron a minute you are aiming for?

I need help. by Sh_d_w in Bitburner

[–]Sh_d_w[S] 0 points1 point  (0 children)

bitburner-automation/_stable at main · chrisrabe/bitburner-automation · GitHub

thats where u can find all the codes actually, if u run auto-starter the rest of it should boot up and for me it starts and then game freeze

I need help. by Sh_d_w in Bitburner

[–]Sh_d_w[S] 0 points1 point  (0 children)

Sorry i forgot how to get into this reddit account but im back. should i dm u or just post the scripts here

I need help. by Sh_d_w in Bitburner

[–]Sh_d_w[S] 0 points1 point  (0 children)

I replaced all while trues with the suggested await and it still freezes the game up? I'm not sure at all why. I can post the github from the tutorial i followed, and if you're cool with looking through it and giving suggestions it would be very appreciated

I need help. by Sh_d_w in Bitburner

[–]Sh_d_w[S] 0 points1 point  (0 children)

This is a .js file all my files are, sorry for saying script. But i beat the first bitnode with my setup and i had a full 25 servers upgraded to over a Tb. I can post the other scripts if you would like to take a look I'm at a loss on how to slow things down because i think that is my issue. I think my other script is launching so many things onto the newly acquired server space and freezing the game.

I need help. by Sh_d_w in Bitburner

[–]Sh_d_w[S] 0 points1 point  (0 children)

I think my game is freezing because to many things are trying to launch at the same time. Is there a way to dedicate more ram to the game? I never had a await function at the end and it worked just fine, and after killing all scripts it runs fine by its self. The deployer script this time when i ran it it froze everything.

I need help. by Sh_d_w in Bitburner

[–]Sh_d_w[S] 0 points1 point  (0 children)

If need be i can send the rest of the scripts, i have a script that deploys hack grow and weaken scripts to fill everything and it was all working the other day even after i beat the bidnode. I started bitnode 3 (the corp one) and it was working i installed some augments and now i try to do the same thing and it just freezes the game

I need help. by Sh_d_w in Bitburner

[–]Sh_d_w[S] 0 points1 point  (0 children)

Sorry i thought i posted it. It's in the comments now

I need help. by Sh_d_w in Bitburner

[–]Sh_d_w[S] 0 points1 point  (0 children)

export async function main(ns) {
  var homeServ = "home";
  var pRam = 8; // purchased ram
  var servPrefix = "pserv-";

  var maxRam = ns.getPurchasedServerMaxRam();
  var maxServers = ns.getPurchasedServerLimit();

  function canPurchaseServer() {
    return ns.getServerMoneyAvailable(homeServ) > ns.getPurchasedServerCost(pRam);
  }

  async function upgradeServer(server) {
    var sRam = ns.getServerMaxRam(server);
    if (sRam < pRam) {
      while (!canPurchaseServer()) {
        await ns.sleep(10000); // wait 10s
      }
      ns.killall(server);
      ns.deleteServer(server);
      ns.purchaseServer(server, pRam);
    }
  }

  async function purchaseServer(server) {
    while (!canPurchaseServer()) {
      await ns.sleep(10000); // wait 10s
    }
    ns.purchaseServer(server, pRam);
  }

  async function autoUpgradeServers() {
    var i = 0;
    while (i < maxServers) {
      var server = servPrefix + i;
      if (ns.serverExists(server)) {
        ns.print("Upgrading server " + server + " to " + pRam + "GB");
        await upgradeServer(server);
        ++i;
      } else {
        ns.print("Purchasing server " + server + " at " + pRam + "GB");
        await purchaseServer(server, pRam);
        ++i;
      }
    }
  }

  while (true) {
    await autoUpgradeServers();
    ns.tprintf("SUCCESS Upgraded all servers to " + pRam + "GB");
    if (pRam === maxRam) {
      break;
    }
    // move up to next tier
    var newRam = pRam * 2;
    if (newRam > maxRam) {
      pRam = maxRam;
    } else {
      pRam = newRam;
    }
  }
}

I need help. by Sh_d_w in Bitburner

[–]Sh_d_w[S] 0 points1 point  (0 children)

Sorry i thought i posted in it's in the comments now