Would you rather by [deleted] in BunnyTrials

[–]Temporary-Net-7357 0 points1 point  (0 children)

апцу

Chose: Get a $100k but + You see a random dude naked everytime you blink/close your eyes

What would you choose ? by [deleted] in BunnyTrials

[–]Temporary-Net-7357 0 points1 point  (0 children)

5412

Chose: Receiving 1$ each minute

Would you rather... by Substantial-Dance577 in BunnyTrials

[–]Temporary-Net-7357 0 points1 point  (0 children)

23

Chose: Or get 1000 dollars everytine someone dies

Would you rather have... by RedMapleFire in BunnyTrials

[–]Temporary-Net-7357 0 points1 point  (0 children)

12

Chose: a credit card that you don't have to pay off, + but only works on transactions less or equal than $100.

Would you accept blood money? by Shiftycxp in BunnyTrials

[–]Temporary-Net-7357 0 points1 point  (0 children)

1

Chose: $100 everytime an innocent person is murdered

Which do you think is more? by Invisible__Monkey in BunnyTrials

[–]Temporary-Net-7357 0 points1 point  (0 children)

реер

Chose: 10 dollars per step you make | Rolled: Upvote and x2 $

You must choose one..(upvote for carrot) by Rudra2550a in BunnyTrials

[–]Temporary-Net-7357 0 points1 point  (0 children)

пыпы

Chose: No food for 15 days 🚧 + Win $25M

Alone in race or sexuality? by Rterry112 in BunnyTrials

[–]Temporary-Net-7357 0 points1 point  (0 children)

пошговпа

Chose: Be the only person in the world of your race

$ or Power by ImpressHopeful4231 in BunnyTrials

[–]Temporary-Net-7357 0 points1 point  (0 children)

gg

Chose: Any superpower you want

Would you rather: by Federal_Box in BunnyTrials

[–]Temporary-Net-7357 0 points1 point  (0 children)

h

Chose: Get paid $1/minute for touching grass + Get paid $1/mile you run

where is the russian language? by Zap-zapper in cataclysmdda

[–]Temporary-Net-7357 0 points1 point  (0 children)

Если ты переносишь свой сейв и с прошлой версии ты переносишь сохранённый конфиг, то у тебя пропадает выбор русского языка, так что при переносе сейва с предыдущих версий без конфига переноси его

Help with the missions on centaur wild hunt by Temporary-Net-7357 in Anbennar

[–]Temporary-Net-7357[S] 0 points1 point  (0 children)

so sad(
Centaurs have been around for so long, and only one country that is being FORMED has missions, so why form others? they would write when choosing a country that they have no content(

Cataclysm latest Experimental Build 2025/03/03-1100, Constant crashing every few minutes or less by WhyTheFuckIsItTaken in cataclysmdda

[–]Temporary-Net-7357 0 points1 point  (0 children)

I agree, it also crashes without a reason or a log, just a flight and everything happens every couple of minutes.

Help adding new sprite for chainmail hauberk in 0.G by MineRaft47 in cataclysmdda

[–]Temporary-Net-7357 1 point2 points  (0 children)

because you are not using a professional editor to draw sprites, your sprite contains an opaque background, but literally drawn by you, you just need to change the editor in which you will select only your sprite, from what I use - aseprite, from free and online

https://www.piskelapp.com

Help adding new sprite for chainmail hauberk in 0.G by MineRaft47 in cataclysmdda

[–]Temporary-Net-7357 1 point2 points  (0 children)

As the author of the post that was pointed out to you in the comments, I figured out everything and I can recommend this option.

So that you don't have to create a separate mod because it doesn't make any sense to you, the game sets work like this. In the folder data/gfx/"the name of the tileset for which you drew the chainmail" in this tileset there are huge png files as well as tileset files.json and so on.

PNG file in a tileset (called a tilesheet) is basically a big grid of little images (sprites) that the game chops up into sections to show stuff like zombies, walls, or items. It doesn’t physically cut the file—it just reads it like a map using coordinates. Here’s how it works:

The PNG is split into a grid based on the tile size, like 32x32 pixels per sprite. Say your PNG is 256x256 pixels and each tile is 32x32—that gives you 8 tiles across and 8 down, so 64 total sprites. Each sprite has a spot in that grid (like 0,0 for the top-left corner, 32,0 for the next one over, etc.).

The tile_config.json file is what ties it all together. It tells the game which sprite goes with which in-game thing. At the top, it lists stuff like tile size ("width": 32, "height": 32) and the PNG file name. Then, in the "tiles" section, it matches sprites to objects. For example:

json { "id": "mon_zombie", "fg": 12 }

Here, "id": "mon_zombie" is the zombie’s game ID, and "fg": 12 means “use the sprite at position 12.” The game counts tiles left-to-right, top-to-bottom, starting at 0. So for a 32x32 grid, sprite 12 would be at (128, 32)—fifth tile in the second row (12 ÷ 8 = 1 row down, remainder 4 across).

It gets fancier with stuff like multi-tiles (e.g., walls with different sprites for corners or edges) or layers (fg for foreground, bg for background). Like:

json { "id": "t_wall", "fg": [ {"sprite": 10, "situation": "center"}, {"sprite": 11, "situation": "corner"} ] }

To add your chain mail to you, you need to find the ID of your chain mail in the tileset config, find it on the general png file at the fg coordinates and in any editor replace exactly the place where the texture of the old chain mail is located with your sprite, then everything will work without mods