Difference between revisions of "GetBoolOptionIni"

From ARK Modding Wiki
Jump to navigation Jump to search
(Created page with "Category:Nodes Category:ShooterGameMode Nodes frame|GetBoolOptionIni - ShooterGameMode == How to Use == Useful for reading a Bool...")
 
Line 7: Line 7:
 
Useful for reading a Bool value out of GameUserSettings.ini (GUS.ini)<br />
 
Useful for reading a Bool value out of GameUserSettings.ini (GUS.ini)<br />
 
'''Note:''' Replication is important here! All GameMode nodes '''MUST''' Run On Server!!
 
'''Note:''' Replication is important here! All GameMode nodes '''MUST''' Run On Server!!
 +
 +
=== Related Articles ===
 +
[[INI_Settings|INI Settings]]
  
 
{| class="wikitable"
 
{| class="wikitable"

Revision as of 06:08, 14 May 2016


GetBoolOptionIni - ShooterGameMode

How to Use

Useful for reading a Bool value out of GameUserSettings.ini (GUS.ini)
Note: Replication is important here! All GameMode nodes MUST Run On Server!!

Related Articles

INI Settings

Inputs
Pin Reference Type Description
Target ShooterGameMode ShooterGameMode Reference (Most likely from a Cast)
Section String Section Name for your INI Settings [ThisPartInINI]
Option Name String Option Name for your INI Setting
Ex. myBool=True Option Name is myBool


Outputs
Pin Reference Type Description
Return Value Bool The value being returned for the setting
Ex. myBool from above would return True