ApiData().GetExuderText

Returns a given Exuder’s AI output pattern.

Description

This function returns one of the output patterns in the identified Behavior.

Example Usage (C#)


string pattern = _core.ApiData().GetExuderText(147, 0);

Parameters

int

id

The numeric integer id of the Behavior from which to read the data.

int

exuderId

The numeric integer id of the Exuder to read.

Returns

The string value representing the returned output pattern, or a null value if unsuccessful.

ApiData()