Level Item Section - Troodon80/Summoner-Save-File-Editor GitHub Wiki
Level Item Section
Contains data related to items the player can pick up around the world. These are independent of the Container section. Items in this section are found within the level_items.tbl file. The section has a count followed by hashes for the name "ID" of the item, e.g. "lenele2aa-006" is the Guardian Heater found where the shop NPC was in Lenele. The hashed "lenele2aa-006" is B8D1410D in little endian. If the hash exists, it means the item exists in the world. The block looks as follows, starting at 0x000397A8:
| Field | Offset | Size | Description |
|---|---|---|---|
| Count | 0x000397A8 | 4 bytes | Count for the number of items in the table |
| Items | +0x04 | 4 bytes * Count | Variable length table |
We can enable or disable these items by including or excluding the hash and increasing or decreasing the count as appropriate. Also of note is that it seems the game does not zero out the bytes after the main table. It includes whatever the last item was for several more iterations.