# Load Real Value

Grammar — Load key of section section from bank bank as real value
FlagsNative | Function

Returns a Real value contained in the chosen Bank at the specified Key of the specified Section.

# Arguments

  • bank — Bank
  • string — Section
  • string — Key

Returns — fixed

native fixed BankValueGetAsFixed(
	bank b,
	string section,
	string key,
);

Category: [Bank / Store & Load](/galaxy/reference#bank-store &-load)

# Examples

# mods/heroesdata.stormmod

GameLib.galaxy

// L10725
BankValueGetAsFixed(libGame_gv_players[lv_itPlayer].lv_bankData.lv_bank, "Debug Menu Options", "HeroLevelXP")

# mods/heroesdata.stormmod

HeroesLib.galaxy

// L2993
BankValueGetAsFixed(lp_bank, lp_section, lp_key)