From d79efead8e764c5470779944616e105b13511cd1 Mon Sep 17 00:00:00 2001 From: Moonlit Productions Date: Sun, 28 Dec 2025 21:15:45 -0500 Subject: [PATCH] INITIAL --- test.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test.lua diff --git a/test.lua b/test.lua new file mode 100644 index 0000000..edf1019 --- /dev/null +++ b/test.lua @@ -0,0 +1,13 @@ +shell.run("clear") +local interface = peripheral.find("basic_interface") or peripheral.find("crystal_interface") or peripheral.find("advanced_crystal_interface") +interface.openIris() +while true do +local _, _, address = os.pullEvent("stargate_incoming_wormhole") +interface.closeIris() +print("Incoming connection from " .. interface.addressToString(address)) +local _, _, _, name, _ = os.pullEvent(stargate_reconstructing_entity) +print(name .. " got squished") +interface.disconnectStargate() +interface.openIris() +end + \ No newline at end of file