Search results

  1. D

    [0.69.420 -PUBLIC#1371] Unfinishable Lights Out for Tarkus Bomb

    A note that this corresponds with line 99 in your LightsOutMinigame.jsx file. if (victory) { nextFunc = () => window.showDialog(UIModalType.PUZZLE, "Switchboard Bypassed", "The switchboard system has been successfully bypassed!", [ { txt: "Continue", f: () => {...
  2. D

    [0.69.420 -PUBLIC#1371] Unfinishable Lights Out for Tarkus Bomb

    The Tarkus bomb lights out mission appears to be unwinnable. The code reaches the non interactive state and does not run a.props.onSuccess(). Manually triggering the f: function() on line 258482 finishes the game as expected. There is possibly an issue with the return and trigger of the...
  3. D

    Lights Out Minigame Critical Error

    The lights out minigame error comes from the bind window.removeLightsOutMinigame = ui.removeLightsOutMinigame.bind(ui) being missing. Running window.removeLightsOutMinigame = ui.removeLightsOutMinigame.bind(ui) in the chrome web console resolves the issue. It simply needs to be added in case...