What Ionize is, on ionize.cc

Ionize is a Windows scripting environment for Windows 10, Windows 11. These pages on ionize.cc cover installing it, working in the editor, and the script API it exposes.

This ionize.cc product is not Ionize CMS, ionize.com.au, the PyPI ionize package, or the 2020 INZ coin.

Your first script

Open a new tab, paste the snippet below, attach when the status control shows the target is ready, then execute. Executor-side results appear in the console drawer. In-game print stays in the game console.

print("Ionize is running")
local executor, version = identifyexecutor()
print(executor, version)

Scripts in the autoexec/ folder run on attach, so anything you want to always load belongs there. See Scripting for the full workflow.

Explore the docs