# Save Data Table Value (Actor)

Grammar — Save value as name in the scope|Global/Local data table
FlagsNative | Action

Saves an actor value into a data table. Data tables allow you to store and recall values using a string identifier. If you save a data table value using a string identifier that already exists, you will overwrite the old value, even if it is a different data type than the value you are saving.

# Arguments

  • bool [ preset::DataScope ] — Scope
  • string — Name
  • actor — Value

Returns — void

native void DataTableSetActor(
	bool global,
	string name,
	actor val,
);

Category: Data Table / Save Value

# Examples

# mods/heroesdata.stormmod

HeroesLib.galaxy

// L3319
DataTableSetActor(true, libCore_gf__UnitDataName(libCore_ge__UnitDataType_Actor, lp_unit, lp_index), lp_actor)

# mods/swarm.sc2mod

SwarmLib.galaxy

// L152
DataTableSetActor(true, libHots_gf__UnitDataName(libHots_ge__UnitDataType_Actor, lp_unit, lp_index), lp_actor)