Difference between revisions of "NGBH"
From SimsWiki
(Document Data array for Memories) |
m (Slightly different wording about data values.) |
||
Line 98: | Line 98: | ||
<pre> | <pre> | ||
0x0: Quality (0 = Positive (Green), 4 = Negative (Red)) | 0x0: Quality (0 = Positive (Green), 4 = Negative (Red)) | ||
− | 0x1: Year ( | + | 0x1: Year (seems to start in 1997, or 0 for no date) |
0x2: Month (1 to 12, or 0 for no date) | 0x2: Month (1 to 12, or 0 for no date) | ||
0x3: Day (1 to 31, or 0 for no date) | 0x3: Day (1 to 31, or 0 for no date) | ||
Line 104: | Line 104: | ||
0x5: Subject GUID (low-order 16 bits) | 0x5: Subject GUID (low-order 16 bits) | ||
0x6: Subject GUID (high-order 16 bits) | 0x6: Subject GUID (high-order 16 bits) | ||
− | 0x7: Initial Value (values seen: -100, -75, -50, 0, 50, 75, 100) | + | 0x7: Initial Value (typical values seen: -100, -75, -50, 0, 50, 75, 100) |
− | 0x8: Minimum Value (values seen: 0, 5, A) | + | 0x8: Minimum Value (typical values seen: 0, 5, A) |
− | 0x9: Daily Decay Amount (values seen: 25, 42, 96) | + | 0x9: Daily Decay Amount (some of the values seen: 25, 42, 96) |
0xA: Current Value (should be between Minimum Value and Initial Value) | 0xA: Current Value (should be between Minimum Value and Initial Value) | ||
0xB: Unknown | 0xB: Unknown | ||
− | 0xC: Subject Instance ID (Optional. Subject Instance ID | + | 0xC: Subject Instance ID (Optional. Subject Instance ID should be present when the Subject GUID is a person.) |
</pre> | </pre> | ||
The value of a memory is a relative score of how the memory affects a sim's mood. Positive values improve mood, negative values make it worse. The value of a memory decays towards zero over time. The minimum value is the closest to zero a memory can decay to. Initial Value, Minimum Value and Current Value should either all be negative or all be positive; otherwise, a negative memory can have lasting positive effects. | The value of a memory is a relative score of how the memory affects a sim's mood. Positive values improve mood, negative values make it worse. The value of a memory decays towards zero over time. The minimum value is the closest to zero a memory can decay to. Initial Value, Minimum Value and Current Value should either all be negative or all be positive; otherwise, a negative memory can have lasting positive effects. |
Revision as of 01:51, 24 September 2011
This article is imported from the old MTS2 wiki. You can help Sims2Wiki by cleaning it up. It's original page with comments can be found at http://old_wiki.modthesims2.com/NGBH
See also: 4E474248
Contents |
Neighborhood Data
File Overview
Header
DWORD : TypeID ("NGBH") DWORD : Version (0x6F=Base Game, 0x70=EP1:University, 0xBE=EP2:Nightlife, 0xC2=EP3:Open for Business, 0xCB=EP5:Seasons) DWORD : Reserved (unused - deprecated) DWORD : Neighborhood Height (128) DWORD : Neighborhood Width (128) DWORD : Textlength n n : TerrainType ("concrete", "desert", "dirt", "temperate") 28byte : Reserved Header Space (unused)
Global Tokens
Associations (associates large structures to the neighbourhood such as a university) -------- NgbhSlot : universal (hood-wide) tokens
Sections
Lots (contains lot tokens such as food info and NPC info) -------- DWORD : SlotCount n Repeat n --> NgbhSlot End Repeat Families (Family tokens such as exports and games) -------- DWORD : SlotCount n Repeat n --> NgbhSlot End Repeat Sims (memories, gossip, sim info tokens and init tokens) -------- DWORD : SlotCount n Repeat n --> NgbhSlot End Repeat BYTE : Custom Hood Marker DWORD : EP Ready Marker (from Uni on. Present in 0x70 versions up)
NgbhSlot
DWORD : InstanceID (of Lot/Family/Sim) if Version >= 0xBE (EP2:Nightlife) --> DWORD : NgbhSlot Version (apparently never used; same values as Version above) DWORD : ItemCount n (Special Simulator tokens) Repeat n --> NgbhItem End Repeat DWORD : ItemCount n (Standard Tokens - memories, gossip, init, food, npc, skills, etc) Repeat n --> NgbhItem End Repeat
NgbhItem
DWORD : GUID WORD : Flags 1 (bit0 = IsVisible, bit1 = IsMemory) if Version >= 0xC2 (EP3:Open for Business) --> WORD : Flags 2 if Version >= 0xBE (EP2:Nightlife) --> DWORD : Inventory Number if Version >= 0xCB (EP5:Seasons) --> WORD : Unknown DWORD : DataCount n Repeat n WORD : DataWord End Repeat
Data Decoding for Memory Items
Memory items have a typical count of 0x0C (if the Memory is about an object) or 0x0D (for memories about a sim, including the owner) DataWords. The following list shows the structure of the Data:
0x0: Quality (0 = Positive (Green), 4 = Negative (Red)) 0x1: Year (seems to start in 1997, or 0 for no date) 0x2: Month (1 to 12, or 0 for no date) 0x3: Day (1 to 31, or 0 for no date) 0x4: Memory Owner Instance ID 0x5: Subject GUID (low-order 16 bits) 0x6: Subject GUID (high-order 16 bits) 0x7: Initial Value (typical values seen: -100, -75, -50, 0, 50, 75, 100) 0x8: Minimum Value (typical values seen: 0, 5, A) 0x9: Daily Decay Amount (some of the values seen: 25, 42, 96) 0xA: Current Value (should be between Minimum Value and Initial Value) 0xB: Unknown 0xC: Subject Instance ID (Optional. Subject Instance ID should be present when the Subject GUID is a person.)
The value of a memory is a relative score of how the memory affects a sim's mood. Positive values improve mood, negative values make it worse. The value of a memory decays towards zero over time. The minimum value is the closest to zero a memory can decay to. Initial Value, Minimum Value and Current Value should either all be negative or all be positive; otherwise, a negative memory can have lasting positive effects.