Welcome
Assert.ToString
Assert.RunString
Assert.ToNumber
Assert.IsNumber
Assert.IsBoolean
Assert.IsString
Assert.IsTable
Assert.IsFunction
Assert.DoesExsist
Assert.CopyTable
Assert.PopulateTable
Assert.CycleTable
Assert.Count
Assert.KillProcessTree
Assert.IsProcessRunning
Assert.GetOSDate
Assert.GetLongTime
Assert.IncludeScriptFolder
Assert.RecurseScriptFolders
|
(string) Assert.ToString ( |
(value) Value ) |
Convert a value into a stringg.
(value) What should be turned into a string.
This action returns a (string) value.
|
(value) Assert.RunString ( |
(string) String ) |
Run string as a function.
(string) String to run.
This action returns a (value) value.
|
(number) Assert.ToNumber ( |
(value) Value ) |
Turn a value into a number.
(value) Value to turn into a number.
This action returns a (number) value.
|
(boolean) Assert.IsNumber ( |
(value) Value ) |
Returns a boolean finding out if a value is a number or not.
(value) Value to check.
This action returns a (boolean) value.
|
(boolean) Assert.IsBoolean ( |
(value) Value ) |
Returns a boolean finding out if a value is a boolean or not.
(value) Value to check.
This action returns a (boolean) value.
|
(boolean) Assert.IsString ( |
(value) Value ) |
Returns a boolean finding out if a value is a string or not.
(value) Value to check.
This action returns a (boolean) value.
|
(boolean) Assert.IsTable ( |
(value) Value ) |
Returns a boolean finding out if a value is a table or not.
(value) Value to check.
This action returns a (boolean) value.
|
(boolean) Assert.IsFunction ( |
(value) Value ) |
Returns a boolean finding out if a value is a function or not.
(value) Value to check.
This action returns a (boolean) value.
|
(boolean) Assert.DoesExsist ( |
(value) Value ) |
Returns a boolean finding out if a value exsists or not.
(value) Value to check.
This action returns a (boolean) value.
|
(table) Assert.CopyTable ( |
(table) Table ) |
Returns a duplicated table.
(table) Table to copy.
This action returns a (table) value.
|
(table) Assert.PopulateTable ( |
(table) Table, (number) Values, (string) Populate String ) |
Populates a table with data.
(table) Table to populate.
(number) Indexes to populate.
(string) String to populate with.
This action returns a (table) value.
|
(nil) Assert.CycleTable ( |
(table) Table, (function) Callback ) |
Cycles through a table with a callback function.
(table) Table to cycle.
(function) The function that is called when the cycle makes progress. (Should take two arguments)
This action returns a (nil) value.
|
(nil) Assert.Count ( |
(number) From, (number) To, (function) Callback ) |
Counts from a number to another number.
(number) The number it should start counting at.
(number) The number it should count up to.
(function) The function that is called when the count makes progress. (Should take one to two arguments)
This action returns a (nil) value.
|
(nil) Assert.KillProcessTree ( |
(string) Process Name ) |
Kills processes spawned from an application.
(string) Process name to kill.
This action returns a (nil) value.
|
(boolean) Assert.IsProcessRunning ( |
(string) Process Name ) |
Returns true if a process is running.
(string) Process name to check status.
This action returns a (boolean) value.
|
(string) Assert.GetOSDate () |
Gets the date from the operating system.
This action returns a (string) value.
|
(number) Assert.GetLongTime () |
Get a long value of time.
This action returns a (number) value.
|
(nil) Assert.IncludeScriptFolder ( |
(string) Folder ) |
Runs scripts in a folder. (Does not recurse)
(string) Folder with scripts inside.
This action returns a (nil) value.
|
(nil) Assert.RecurseScriptFolders ( |
(string) Folder ) |
Runs scripts in a folder. (Includes all files in subfolders)
(string) Folder with scripts inside.
This action returns a (nil) value.
Made with Action Plugin Compiler