From e7a9273c80a3f7d761861f5dfdd739cdb22d07d1 Mon Sep 17 00:00:00 2001 From: Daniel Barbera <87785383+xRalic@users.noreply.github.com> Date: Tue, 24 May 2022 00:31:43 +0200 Subject: [PATCH] #2709: Generate contracts while offline --- src/engine.tsx | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/engine.tsx b/src/engine.tsx index 80be6d846..33b16057b 100644 --- a/src/engine.tsx +++ b/src/engine.tsx @@ -272,20 +272,20 @@ const Engine: { const numCyclesOffline = Math.floor(timeOffline / CONSTANTS._idleSpeed); // Generate coding contracts - // let numContracts = 0; - // if (numCyclesOffline < 3000 * 100) { - // // if we have less than 100 rolls, just roll them exactly. - // for (let i = 0; i < numCyclesOffline / 3000; i++) { - // if (Math.random() < 0.25) numContracts++; - // } - // } else { - // // just average it. - // numContracts = (numCyclesOffline / 3000) * 0.25; - // } - // console.log(`${numCyclesOffline} ${numContracts}`); - // for (let i = 0; i < numContracts; i++) { - // generateRandomContract(); - // } + let numContracts = 0; + if (numCyclesOffline < 3000 * 100) { + // if we have less than 100 rolls, just roll them exactly. + for (let i = 0; i < numCyclesOffline / 3000; i++) { + if (Math.random() < 0.25) numContracts++; + } + } else { + // just average it. + numContracts = (numCyclesOffline / 3000) * 0.25; + } + console.log(`${numCyclesOffline} ${numContracts}`); + for (let i = 0; i < numContracts; i++) { + generateRandomContract(); + } let offlineReputation = 0; const offlineHackingIncome = (Player.moneySourceA.hacking / Player.playtimeSinceLastAug) * timeOffline * 0.75;