Connor Horman
Connor Horman
On Mon, Apr 27, 2020 at 21:51 Tin Švagelj wrote: > Static data doesn't need to necessarily break every version. It is > possible to download Minecraft jar for version...
@sancarn as it stands, crafting recipes cannot be iterated statically, even in vanilla. Because Recipes are data driven, you cannot assume that any given recipe does or does not exists....
On Tue, 28 Apr 2020 at 15:45, Tin Švagelj wrote: > @Caellian I agree in principle. > > There may be a way to support mods though. You (or this...
On Tue, Apr 28, 2020 at 18:43 Tin Švagelj wrote: > It would place a huge burden on the user of a datapack generated using CBA. > > No, it...
Adding all the fundamental types would make 2 things better: 1 -> It would complete the c standard 2 -> It would make it easier to use pointers, Also, it...
As for transferring data, I know that in 1.13 it is possible to convert nbt into scoreboards with /execute store score run data get As for strings, I would store...
BTW I have to ask how TEST works in c code with the __asm__ tag, and what instructions allow for dereferencing, in the extended ASM that C uses?
So the use of NBT would enable you to store data in a Byte-Array. The advantage to using it is space. While a single byte in java takes a full...
Took a look at your new API. I already pointed this out in a related question, but from examining the python code (have a bit more experience now then I...
Question: are bitfields supported? As in struct S{ unsigned A:16; unsigned B:8; unsigned C:7; _Bool D:1; }; If so, I can use my qc hack: typedef union __qc_float32{ unsigned bits:32;...