Notch Notch
Manual 1.0 Manual 0.9.23
 Light | Dark
GetNotchVersion()

GetNotchVersion()

Updated: 27 Mar 2025

Purpose #

Returns the Notch version number as an array of four numbers: x, y, z, w.

Syntax #

Array GetNotchVersion()

Example #

function Init()
{
    Log("Version: " + GetNotchVersion()[0] + "." + GetNotchVersion()[1] + "." + GetNotchVersion()[2] + "." + GetNotchVersion()[3]);
}