[DiscordArchive] are you adding a container with key value pairs that point to the DB?
[DiscordArchive] are you adding a container with key value pairs that point to the DB?
Archived author: Dep • Posted: 2022-03-15T01:01:52.499000+00:00
Original source
yeh look like a lot of magic numbers in these files. I don't build scripts at all so haven't even seen
Archived author: Bogir • Posted: 2022-03-15T01:05:46.235000+00:00
Original source
Sometime I meet wrong usage of `#define` at enum - values for MenuID were assigned as MenuItem, while there can be several MenuItems in one MenuID
Archived author: Dep • Posted: 2022-03-15T01:06:35.385000+00:00
Original source
```cpp
constexpr std::pair<uint32, uint32> gossip_bear1 = { 3882, 0 }; // What do you represent, spirit? =>3881
constexpr std::pair<uint32, uint32> gossip_bear2 = { 3881, 0 }; // I seek to understand the importance of strength of the body =>3883
constexpr std::pair<uint32, uint32> gossip_bear3 = { 3883, 0 }; // I seek to understand the importance of strength of the heart =>3884
constexpr std::pair<uint32, uint32> gossip_bear4 = { 3884, 0 }; // I have heard your words, Great Bear Spirit, and I understand. ... =>3885
```
Archived author: Dep • Posted: 2022-03-15T01:06:42.545000+00:00
Original source
is the missmatching comment on purpose in this?
Archived author: Dep • Posted: 2022-03-15T01:06:53.285000+00:00
Original source
references different ID
Archived author: Dep • Posted: 2022-03-15T01:07:32.164000+00:00
Original source
I have to say I don't like this `case GOSSIP_ACTION_INFO_DEF + 3:` system that's going on in this file
Archived author: Dep • Posted: 2022-03-15T01:08:22.044000+00:00
Original source
but then again it's just scripts
Archived author: Bogir • Posted: 2022-03-15T01:20:46.755000+00:00
Original source
You mean why variable called `gossip_bear1` ?
Someone decided to call it that a long time ago, maybe because the action comes from the bear. I don't know
Archived author: Dep • Posted: 2022-03-15T01:21:19.639000+00:00
Original source
`{ 3882, 0 }; // =>3881`
Archived author: Dep • Posted: 2022-03-15T01:21:22.516000+00:00
Original source
this is what I mean