Difference between revisions of "NDGIW"

From Legends of Aria Admin and Modding Wiki
Jump to: navigation, search
 
(One intermediate revision by the same user not shown)
Line 6: Line 6:
 
{| class="wikitable" | style="width: 60%"
 
{| class="wikitable" | style="width: 60%"
 
|-
 
|-
|style="width: 40%"| <p style="color: #DDDD88;font-size: 18px">WriteInt32ToPlugin() || .
+
|style="width: 40%"| <p style="color: #DDDD88;font-size: 18px">WriteInt32ToPlugin()</p>Params<br>plugin - name of plugin to send to<br>int32 - value || Sends an Int32 value directly to a C# gameplay plugin.
 
|}
 
|}
 
</center>
 
</center>
Line 17: Line 17:
 
{| class="wikitable" | style="width: 60%"
 
{| class="wikitable" | style="width: 60%"
 
|-
 
|-
|style="width: 40%"| <p style="color: #DDDD88;font-size: 18px">WriteInt64ToPlugin() || .
+
|style="width: 40%"| <p style="color: #DDDD88;font-size: 18px">WriteInt64ToPlugin()</p>Params<br>plugin - name of plugin to send to<br>int64 - value || .Sends an Int64 value directly to a C# gameplay plugin
 
|}
 
|}
 
</center>
 
</center>
Line 28: Line 28:
 
{| class="wikitable" | style="width: 60%"
 
{| class="wikitable" | style="width: 60%"
 
|-
 
|-
|style="width: 40%"| <p style="color: #DDDD88;font-size: 18px">WriteBooleanToPlugin() || .
+
|style="width: 40%"| <p style="color: #DDDD88;font-size: 18px">WriteBooleanToPlugin()</p>Params<br>plugin - plugin name to send to<br>bool - value || Sends a boolean value directly to a C# gameplay plugin..
 
|}
 
|}
 
</center>
 
</center>
Line 39: Line 39:
 
{| class="wikitable" | style="width: 60%"
 
{| class="wikitable" | style="width: 60%"
 
|-
 
|-
|style="width: 40%"| <p style="color: #DDDD88;font-size: 18px">WriteDoubleToPlugin() || .
+
|style="width: 40%"| <p style="color: #DDDD88;font-size: 18px">WriteDoubleToPlugin()</p>Params<br>plugin - plug-in name to send to<br>double - value|| Sends a double value directly to a C# gameplay plugin.
 
|}
 
|}
 
</center>
 
</center>
Line 50: Line 50:
 
{| class="wikitable" | style="width: 60%"
 
{| class="wikitable" | style="width: 60%"
 
|-
 
|-
|style="width: 40%"| <p style="color: #DDDD88;font-size: 18px">WriteObjectToPlugin() || .
+
|style="width: 40%"| <p style="color: #DDDD88;font-size: 18px">WriteObjectToPlugin()</p>Params<br>plugin - plug-in name to send to<br>object - value || Sends an object directly to a C# gameplay plugin.
 
|}
 
|}
 
</center>
 
</center>
Line 61: Line 61:
 
{| class="wikitable" | style="width: 60%"
 
{| class="wikitable" | style="width: 60%"
 
|-
 
|-
|style="width: 40%"| <p style="color: #DDDD88;font-size: 18px">WriteStringToPlugin() || .
+
|style="width: 40%"| <p style="color: #DDDD88;font-size: 18px">WriteStringToPlugin()</p>Params<br>plugin - plug-in name to send to<br>string - value || Sends a string value directly to a C# gameplay plugin.
 
|}
 
|}
 
</center>
 
</center>

Latest revision as of 06:50, 24 November 2019

[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