From 070a48f298a63c5dc47cb6a89bb315697fb703ea Mon Sep 17 00:00:00 2001 From: Isaac Shoebottom Date: Fri, 3 Nov 2023 14:41:22 -0300 Subject: [PATCH] Test to see how ram cost is calculated --- servers/home/ramcost.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 servers/home/ramcost.ts diff --git a/servers/home/ramcost.ts b/servers/home/ramcost.ts new file mode 100644 index 0000000..48cc058 --- /dev/null +++ b/servers/home/ramcost.ts @@ -0,0 +1,6 @@ +import {NS} from "NetscriptDefinitions"; +import {executeScriptOnServerFromAnother} from "./utils"; + +export async function main(ns: NS) { + executeScriptOnServerFromAnother(ns, "servers/home/ramcost.ts", [], "home") +} \ No newline at end of file