# Value From Data Table (Revealer)

Grammarname from the scope|Global/Local data table
FlagsNative | Function

Returns a revealer value from a data table. Data tables allow you to store and recall values using a string identifier.

# Arguments

  • bool<preset::DataScope> — Scope
  • string — Name

Returns — revealer

native revealer DataTableGetRevealer(
	bool global,
	string name,
);

Category: Data Table / Load Value

# Examples

mods/starcoop/starcoop.sc2modbase.sc2data/LibCOMI.galaxy:8333

    // Automatic Variable Declarations
    // Implementation
    return DataTableGetRevealer(true, ("CM_Revealer_" + IntToString(lp_revealerIndex)));
}