Skip to content

Latest commit

 

History

History
55 lines (48 loc) · 1.17 KB

bitburner.go.cheat.md

File metadata and controls

55 lines (48 loc) · 1.17 KB

Home > bitburner > Go > cheat

Go.cheat property

Illicit and dangerous IPvGO tools. Not for the faint of heart. Requires Bitnode 14.2 to use.

Signature:

cheat: {
    getCheatSuccessChance(): number;
    removeRouter(
      x: number,
      y: number,
    ): Promise<{
      type: "invalid" | "move" | "pass" | "gameOver";
      x: number;
      y: number;
      success: boolean;
    }>;
    playTwoMoves(
      x1: number,
      y1: number,
      x2: number,
      y2: number,
    ): Promise<{
      type: "invalid" | "move" | "pass" | "gameOver";
      x: number;
      y: number;
      success: boolean;
    }>;

    repairOfflineNode(
      x: number,
      y: number,
    ): Promise<{
      type: "invalid" | "move" | "pass" | "gameOver";
      x: number;
      y: number;
      success: boolean;
    }>;

    destroyNode(
      x: number,
      y: number,
    ): Promise<{
      type: "invalid" | "move" | "pass" | "gameOver";
      x: number;
      y: number;
      success: boolean;
    }>;
  };