Difference between revisions of "NDGIW"
(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
Global Functions & Examples
WriteInt32ToPlugin() Paramsplugin - name of plugin to send to int32 - value |
Sends an Int32 value directly to a C# gameplay plugin. |
Example
CODE EXAMPLE BLOCK
WriteInt64ToPlugin() Paramsplugin - name of plugin to send to int64 - value |
.Sends an Int64 value directly to a C# gameplay plugin |
Example
CODE EXAMPLE BLOCK
WriteBooleanToPlugin() Paramsplugin - plugin name to send to bool - value |
Sends a boolean value directly to a C# gameplay plugin.. |
Example
CODE EXAMPLE BLOCK
WriteDoubleToPlugin() Paramsplugin - plug-in name to send to double - value |
Sends a double value directly to a C# gameplay plugin. |
Example
CODE EXAMPLE BLOCK
WriteObjectToPlugin() Paramsplugin - plug-in name to send to object - value |
Sends an object directly to a C# gameplay plugin. |
Example
CODE EXAMPLE BLOCK
WriteStringToPlugin() Paramsplugin - plug-in name to send to string - value |
Sends a string value directly to a C# gameplay plugin. |
Example
CODE EXAMPLE BLOCK