Skip to content

Hello from a module

Smallest runnable script: print once, then stays loaded on tick.

lua
-- Smallest runnable module: prints once, then stays loaded on tick.
print("hello from Arcane")
game.on("tick", function()
  -- keep quiet after first print
end)

Arcane SDK catalog generated from scripts/sdk