Daggerfall Mod:DFRemake/DFEGetFirstRegionDungeon

The UESPWiki – Your source for The Elder Scrolls since 1995
Jump to: navigation, search

integer DFEGetFirstRegionDungeon ( DWORD MemblockPtr, DWORD RegionIndex )[edit]

Inputs[edit]

  • MemblockPtr: Pointer to the memblock (from GET MEMBLOCK POINTER) to receive the dungeon data. The memblock should be allocated with at least 256 bytes.
  • RegionIndex: The region index to start iterating dungeons in.

Outputs[edit]

Returns 0 if there are no dungeon in the given region (or on any error). Returns 1 on success.

Description[edit]

Use this function to start iterating through all dungeons in a given region. See DFEGetNextRegionDungeon for a description of the memblock data format used.

Example[edit]

  Local Result as integer
  make memblock 1, 256
  Result = DFEGetFirstRegionDungeon(get memblock ptr(1), 19)

See Also[edit]