Kerbiter
Kerbiter
> Why include these maps in a 2v2 game mode? Aren't 2v2 modes only having a small proportion of selected tournament maps? Let the modders be responsible to preparing such...
Can you show a pic how it looks right now with default settings?
Hmm what if we wrote `Name (7/10)` instead? seems intuitive enough and not overloaded much to me
I installed it using an MSI, I don't think it asked me for association of the files at any point.
```py import png import struct fname = input("*.pal to convert: ") with open(fname, "rb") as pal: data = pal.read(768) palette = list(struct.unpack("768B", data)) palette = (palette, ) with open(fname +...
Sure thing. [unitsno.zip](https://github.com/user-attachments/files/17005894/unitsno.zip) Also here's the reference to the format: https://modenc.renegadeprojects.com/PAL
How about an option/toggle for specifying bit depth? Or perhaps having multiple .pal formats to choose from?
Can confirm the option works. I think the name would not be intuitive to C&C users though, as they don't have an idea what is 6-bit colors. Perhaps the best...
 Reference of how VXLSE does it, which is used by the most of C&C voxel authors. Red grid is the current level voxels, you can...
This PR is supposed to be a reimpl. of #627. @FS-21 please verify that it can achieve the same functionality, keeping in mind what we commented earlier.