[DiscordArchive] So for LightData it would be `struct LightDataMeta` ?
[DiscordArchive] So for LightData it would be `struct LightDataMeta` ?
Archived author: Vel • Posted: 2025-09-10T11:13:04.902000+00:00
Original source
So for LightData it would be `struct LightDataMeta` ?
Archived author: Vel • Posted: 2025-09-10T11:23:31.450000+00:00
Original source
Not sure what I do wrong but I am styl 32 bytes short when I compare my packet with the hotfix_blob content for LightData.
```lua
Packet: 3801088
Size: 197
tableHash: 0x0AD67EBF
recordId: 23099
timestamp: 1757503243
status: 32
size: 180
data (hex): 43 02 64 00 C0 A4 87 00 1B 0C 10 00 4F 47 1E 00 4F 47 1E 00 4F 47 1E 00 4F 47 1E 00 4F 47 1E 00 4F 47 1E 00 45 52 20 00 45 52 20 00 00 00 00 00 45 52 20 00 00 00 00 00 3A 58 4D 00 4E 53 3A 00 3A 5F 4D 00 4E 53 3A 00 00 50 C3 46 00 00 00 00 00 00 90 40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
```
Compared to for example data:
```0x3913A0058578A100CD9E85002C1F1A0052392C0052392C00593E3000593E30006E441100EAE3C3002D261D001E1712001105000000000000584E34003319130000000000361A0F000000000000000000000000000000E04000207D450E745A3B000040400000FA440000803F000000000000000000000000B88D7A008C5A59007A5824000000E144000000000000803F543C1A0000A8CCBD80C43E40006656C0007CBD3F00000000000000000000000000000000``` (212 bytes)
![[Image: image.png?ex=690c85b0&is=690b3430&hm=ecf...c748858ff&]](https://cdn.discordapp.com/attachments/376457124726702080/1415297153445789716/image.png?ex=690c85b0&is=690b3430&hm=ecf1a092f3597988122f8bd00519d8bee760bb3d4f64164e763a3acc748858ff&)
Archived author: Vel • Posted: 2025-09-10T11:25:36.383000+00:00
Original source
(just an example I pulled from this)
![[Image: image.png?ex=690c85b0&is=690b3430&hm=ecf...c748858ff&]](https://cdn.discordapp.com/attachments/376457124726702080/1415297153445789716/image.png?ex=690c85b0&is=690b3430&hm=ecf1a092f3597988122f8bd00519d8bee760bb3d4f64164e763a3acc748858ff&)
Archived author: Tea • Posted: 2025-09-10T11:27:56.488000+00:00
Original source
you probably missed that last 3 columns are arrays with 4 elements
Archived author: Vel • Posted: 2025-09-10T11:36:43.936000+00:00
Original source
It's weird because LightDataMeta defines 46 (45) columns
```c++
static constexpr DB2Meta Instance =
{
.FileDataId = 1375580,
.IndexField = -1,
.ParentIndexField = 0,
.FieldCount = 46,
.FileFieldCount = 46,
.LayoutHash = 0xB5052D20,
.Fields = Fields
};
```
But LightData has 56 columns.
Archived author: Vel • Posted: 2025-09-10T11:36:58.954000+00:00
Original source
https://wago.tools/db2/LightData?filter%...579&page=1
[Embed: Wago Tools]
https://wago.tools/db2/LightData?filter%...579&page=1
Archived author: Vel • Posted: 2025-09-10T11:38:07.079000+00:00
Original source
Oh that has to do something with the arrays I guess.
Archived author: Vel • Posted: 2025-09-10T11:39:09.301000+00:00
Original source
But how should I know this? It's not specified in the meta that there are any arrays.
Archived author: Vel • Posted: 2025-09-10T11:39:30.641000+00:00
Original source
Oh...
Archived author: Vel • Posted: 2025-09-10T11:39:34.645000+00:00
Original source
i am looking at bad meta now.