Steam installieren
Anmelden
|
Sprache
简体中文 (Vereinfachtes Chinesisch)
繁體中文 (Traditionelles Chinesisch)
日本語 (Japanisch)
한국어 (Koreanisch)
ไทย (Thai)
Български (Bulgarisch)
Čeština (Tschechisch)
Dansk (Dänisch)
English (Englisch)
Español – España (Spanisch – Spanien)
Español – Latinoamérica (Lateinamerikanisches Spanisch)
Ελληνικά (Griechisch)
Français (Französisch)
Italiano (Italienisch)
Bahasa Indonesia (Indonesisch)
Magyar (Ungarisch)
Nederlands (Niederländisch)
Norsk (Norwegisch)
Polski (Polnisch)
Português – Portugal (Portugiesisch – Portugal)
Português – Brasil (Portugiesisch – Brasilien)
Română (Rumänisch)
Русский (Russisch)
Suomi (Finnisch)
Svenska (Schwedisch)
Türkçe (Türkisch)
Tiếng Việt (Vietnamesisch)
Українська (Ukrainisch)
Ein Übersetzungsproblem melden
ns.print("Solving" + contract.fileName + " at " + contract.server + "...")
You can fix this by adding the following to solveallcontracts.js
const replacer = (key, value) =>
typeof value === "bigint" ? { $bigint: value.toString() } : value;
and then add replacer to all instance of JSON.stringify(contract) like this
JSON.stringify(contract, replacer)
Note that this will still make all contract that is "Square Root" type unsolvable, You gonna have to figure that out somehow since I got to message limit now
Wonder what happens when you add more information to the "Solving " line? Like maybe some spaces and a server name where it's actually working.
Good luck.
As of July 2024 if you download from Github and put all your scripts in one level/folder then change inside "solveallcontracts.js":
const solveContractScript = "/contracts/solvecontract.js";
To:
const solveContractScript = "solvecontracts.js";
I re-uploaded them, tested them and they are working now.
Just delete the 2 scripts and re-download them from GitHub.