NDGIW

From Legends of Aria Admin and Modding Wiki
Jump to: navigation, search

[Main] [Lua Examples]

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

Global Functions & Examples

WriteInt32ToPlugin()

Params
plugin - name of plugin to send to
int32 - value
Sends an Int32 value directly to a C# gameplay plugin.

Example

 CODE EXAMPLE BLOCK

WriteInt64ToPlugin()

Params
plugin - name of plugin to send to
int64 - value
.Sends an Int64 value directly to a C# gameplay plugin

Example

 CODE EXAMPLE BLOCK

WriteBooleanToPlugin()

Params
plugin - plugin name to send to
bool - value
Sends a boolean value directly to a C# gameplay plugin..

Example

 CODE EXAMPLE BLOCK

WriteDoubleToPlugin()

Params
plugin - plug-in name to send to
double - value
Sends a double value directly to a C# gameplay plugin.

Example

 CODE EXAMPLE BLOCK

WriteObjectToPlugin()

Params
plugin - plug-in name to send to
object - value
Sends an object directly to a C# gameplay plugin.

Example

 CODE EXAMPLE BLOCK

WriteStringToPlugin()

Params
plugin - plug-in name to send to
string - value
Sends a string value directly to a C# gameplay plugin.

Example

 CODE EXAMPLE BLOCK