IsPackageStarted

From Onset Developer Wiki
Revision as of 14:35, 26 June 2021 by FlyingFork (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
IsPackageStarted

Type: Function
Context: Server
Introduced: v1.0

Description

Checks whether a package is started.

Syntax

IsPackageStarted(PackageName)

Parameters

  • PackageName
    The name of the package.

Return Value

  • Returns true if the package is started.

Example

local packageName = "dev"
print("Package state: " .. (IsPackageStarted(packageName) and "ON" or "OFF"))

See also