[DiscordArchive] Isnt that dbc?
[DiscordArchive] Isnt that dbc?
Archived author: M'Dic • Posted: 2024-06-04T12:05:27.573000+00:00
Original source
Isnt that dbc?
Archived author: Starlit • Posted: 2024-06-04T12:16:50.727000+00:00
Original source
possibly I found an editor for them and had a look but the races one was mostly all numbers
Archived author: M'Dic • Posted: 2024-06-04T12:19:13.238000+00:00
Original source
Bitmasking i would assume
Archived author: M'Dic • Posted: 2024-06-04T12:20:31.952000+00:00
Original source
This is a snippet from my notes.
```cpp
# RACEMASK_NONE = 1 << 0, // 0
# RACEMASK_HUMAN = 1 << 1, // 2
# RACEMASK_ORC = 1 << 2, // 4
# RACEMASK_DWARF = 1 << 3, // 8
# RACEMASK_NIGHTELF = 1 << 4, // 16
# RACEMASK_UNDEAD_PLAYER = 1 << 5, // 32
# RACEMASK_TAUREN = 1 << 6, // 64
# RACEMASK_GNOME = 1 << 7, // 128
# RACEMASK_TROLL = 1 << 8, // 256
# RACEMASK_BLOODELF = 1 << 10, // 1024
# RACEMASK_DRAENEI = 1 << 11, // 2048
#
# // 3582
# RACEMASK_ALL = RACEMASK_HUMAN | RACEMASK_ORC | RACEMASK_DWARF | RACEMASK_NIGHTELF | RACEMASK_UNDEAD_PLAYER | RACEMASK_TAUREN | RACEMASK_GNOME | RACEMASK_TROLL | RACEMASK_BLOODELF | RACEMASK_DRAENEI
```
Archived author: Starlit • Posted: 2024-06-04T12:21:56.534000+00:00
Original source
I roughly get the meaning of that, but I am no coder. Well not C++ I know some html and css, and in the back of my brain I know some other stuff lmao