Difference between revisions of "NDGIW"

From Legends of Aria Admin and Modding Wiki
Jump to: navigation, search
(Created page with "<center><p style="width: 60%">A B C D E F G H I J K L [...")
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
<p style="width:60%;margin: 0 auto">[[NewDawnHome|[Main]]] [[NDServerIndexScriptsMain|[Lua Examples]]]</p>
 
<center><p style="width: 60%">[[NDGIA|A]] [[NDGIB|B]] [[NDGIC|C]] [[NDGID|D]] [[NDGIE|E]] [[NDGIF|F]] [[NDGIG|G]] [[NDGIH|H]] [[NDGII|I]] [[NDGIJ|J]] [[NDGIK|K]] [[NDGIL|L]] [[NDGIM|M]] [[NDGIN|N]] [[NDGIO|O]] [[NDGIP|P]] [[NDGIQ|Q]] [[NDGIR|R]] [[NDGIS|S]] [[NDGIT|T]] [[NDGIU|U]] [[NDGIV|V]] [[NDGIW|W]] [[NDGIX|X]] [[NDGIY|Y]] [[NDGIZ|Z]]</p></center>
 
<center><p style="width: 60%">[[NDGIA|A]] [[NDGIB|B]] [[NDGIC|C]] [[NDGID|D]] [[NDGIE|E]] [[NDGIF|F]] [[NDGIG|G]] [[NDGIH|H]] [[NDGII|I]] [[NDGIJ|J]] [[NDGIK|K]] [[NDGIL|L]] [[NDGIM|M]] [[NDGIN|N]] [[NDGIO|O]] [[NDGIP|P]] [[NDGIQ|Q]] [[NDGIR|R]] [[NDGIS|S]] [[NDGIT|T]] [[NDGIU|U]] [[NDGIV|V]] [[NDGIW|W]] [[NDGIX|X]] [[NDGIY|Y]] [[NDGIZ|Z]]</p></center>
 
<p style="color: #DDDD88;font-size: 22px;width:60%;margin: 0 auto">Global Functions & Examples</p>
 
<p style="color: #DDDD88;font-size: 22px;width:60%;margin: 0 auto">Global Functions & Examples</p>
 +
 +
<center>
 +
{| class="wikitable" | style="width: 60%"
 +
|-
 +
|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>
 +
<p style="width: 60%;margin: 0 auto">Example</p>
 +
<div style="width:60%;margin: 0 auto">
 +
  CODE EXAMPLE BLOCK
 +
</div>
 +
 +
<center>
 +
{| class="wikitable" | style="width: 60%"
 +
|-
 +
|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>
 +
<p style="width: 60%;margin: 0 auto">Example</p>
 +
<div style="width:60%;margin: 0 auto">
 +
  CODE EXAMPLE BLOCK
 +
</div>
 +
 +
<center>
 +
{| class="wikitable" | style="width: 60%"
 +
|-
 +
|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>
 +
<p style="width: 60%;margin: 0 auto">Example</p>
 +
<div style="width:60%;margin: 0 auto">
 +
  CODE EXAMPLE BLOCK
 +
</div>
 +
 +
<center>
 +
{| class="wikitable" | style="width: 60%"
 +
|-
 +
|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>
 +
<p style="width: 60%;margin: 0 auto">Example</p>
 +
<div style="width:60%;margin: 0 auto">
 +
  CODE EXAMPLE BLOCK
 +
</div>
 +
 +
<center>
 +
{| class="wikitable" | style="width: 60%"
 +
|-
 +
|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>
 +
<p style="width: 60%;margin: 0 auto">Example</p>
 +
<div style="width:60%;margin: 0 auto">
 +
  CODE EXAMPLE BLOCK
 +
</div>
 +
 +
<center>
 +
{| class="wikitable" | style="width: 60%"
 +
|-
 +
|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>
 +
<p style="width: 60%;margin: 0 auto">Example</p>
 +
<div style="width:60%;margin: 0 auto">
 +
  CODE EXAMPLE BLOCK
 +
</div>

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