EasyPickins Posted April 8, 2021 Share Posted April 8, 2021 Tiles Tileset images For Windows TileZed + WorldEd 32-bit TileZed + WorldEd 64-bit The 32-bit version of WorldEd seems unable to load all the tilesets due to high memory usage, displaying ??? for some tiles. Linux TileZed + WorldEd 64-bit This was built on Ubuntu 20. TileZed changes: BuildingEd: made the rooms combobox wider to avoid eliding text in dropdown menu. Disabled the tileset search filter when there are no tilesets. Fixed crash right-clicking in the tileset view when there is no tileset. BuildingEd: forbid adding more than 8 floors. Fixed graphics corruption in BuildingEd tile view when OpenGL rendering is turned off. Added editor for overlays on non-container tiles. This is used for things such as adding random seat cushions and detail textures on brick walls. Added "Show Lot Floors Only" option to the View menu. Tiles in layers named X_AboveLots are drawn above lots (buildings). This can be used to place fences or other tiles adjacent to building walls. Added support for loading tilesets from subdirectories of the Tiles/ and Tiles/2x/ directories. You can put custom tilesets into one or more subdirectories to keep them separate from the game's tilesets. Tilesets can be moved freely in and out of subdirectories without breaking maps or buildings. Container Overlay editor: Dragging-and-dropping 2 tiles onto the base tile creates a new room with those 2 tiles. Added "Floor Grime (Random)" edge tool. Added "Blend Edges Everywhere" setting in the blend-tool options. By default, BMP blend edge tiles are added on top of BMP floor tiles only or adjacent to BMP floor tiles. A new per-map setting changes this behavior to allow edge tiles to be placed onto non-BMP floor tiles. Dragging-and-dropping blank tiles in the overlay editors sets the tile name to "none". Fixed slowness switching between maps due to searching WorldEd projects for the map file. WorldEd changes: Display only levels 0-7 instead of 0-10. Added object properties that are used to tell the game which direction water is flowing (or not flowing, such as swimming pools). Added mouse-over highlighting of cells in the world view. The Layers dock displays default layers from TMXConfig.txt so they may be hidden. Generate Lots no longer stops after the first error, reporting errors when finished. Fixed "Show BMP Images" view option not being applied when opening a world. Fixed the long delay before the context menu appears after right-clicking on buildings. The delay increased with the number of buildings and rooms. Lots may be reordered by dragging and dropping within the Lots dock. Snuffleupagus, JoZ3, Ladriverni and 1 other 4 Link to comment Share on other sites More sharing options...
Хибити\Hibiti [BLR] Posted April 29, 2021 Share Posted April 29, 2021 EasyPickins Please add support for horizontal and vertical walls. It was really cool and added more variety for us as map and building creators. I hope it can be done, and I am more than sure that people want it. If you doubt that we will not find a use for these horizontal and vertical walls - do not hesitate) FoxyThePirate2704 1 Link to comment Share on other sites More sharing options...
Nazarito22 Posted May 8, 2021 Share Posted May 8, 2021 Please make it possible to save a map of objects (details) to a file. PLEASE !!!!! For example, I have a 1x1 cell on the map and on it I have placed a vegetable garden with different plants, fences, wells, bales of hay, logs, leaves, different trees (not standard), and various other objects for the exterior. We currently have 3 files - basemap, vegetation map and zombie spawn. If you go here https://theindiestone.com/forums/index.php?/topic/21951-the-one-stop-tilezed-mapping-shop/ and read step 5, then this is actually what I'm asking about. MAP of details. Sometimes the program crashes or you accidentally overwrite the basemap file or the file with vegetation (I don't remember exactly which one) and in an instant you lose all the details on the map and all the work was in vain. And this is just awful. Motivation drops instantly and you want to give up everything. Link to comment Share on other sites More sharing options...
Brodius Posted May 23, 2021 Share Posted May 23, 2021 Hey, how do you get 2x GFTEXTURES.PACK? Or what is it exactly? Thanks for everything Link to comment Share on other sites More sharing options...
Faalagorn Posted June 6, 2021 Share Posted June 6, 2021 (edited) It seems that no matter what I try, it doesn't want to launch from Linux, here's the error: Quote Error renaming file! From: To: /home/faalagorn/.TileZed/Tilesets.txt Invalid cross-device link (while reading Tilesets.txt) The from path is empty and the file is getting created under /home/faalagorn/.TileZed/Tilesets.txt properly. It happens with the pre-compiled version as well as the one compiled from GitHub https://github.com/timbaker/tiled Might be my system as I'm not on Ubuntu but Arch instead, though the old version seemed to work for me… It seems the problem is known in other applications as well, but I'm fighting hard to troubleshoot it for few hours now, I'll let you know if I find anything, but maybe someone else has an idea? EDIT: It seems that I solved it by commenting lines 77 to 111: https://github.com/timbaker/tiled/blob/zomboid/src/tiled/BuildingEditor/simplefile.cpp#L77 to https://github.com/timbaker/tiled/blob/zomboid/src/tiled/BuildingEditor/simplefile.cpp#L111 so the following lines are gone: // foo.txt -> foo.txt.bak QFileInfo destInfo(filePath); QString backupPath = filePath + QLatin1String(".bak"); QFile backupFile(backupPath); if (destInfo.exists()) { if (backupFile.exists()) { if (!backupFile.remove()) { mError = QString(QLatin1String("Error deleting file!\n%1\n\n%2")) .arg(backupPath) .arg(backupFile.errorString()); return false; } } QFile destFile(filePath); if (!destFile.rename(backupPath)) { mError = QString(QLatin1String("Error renaming file!\nFrom: %1\nTo: %2\n\n%3")) .arg(filePath) .arg(backupPath) .arg(destFile.errorString()); return false; } } // /tmp/tempXYZ -> foo.txt tempFile.close(); if (!tempFile.rename(filePath)) { mError = QString(QLatin1String("Error renaming file!\nFrom: %1\nTo: %2\n\n%3")) .arg(tempFile.fileName()) .arg(filePath) .arg(tempFile.errorString()); // Try to un-rename the backup file if (backupFile.exists()) backupFile.rename(filePath); // might fail return false; } with this code gone, I made sure the respective files are in tiled/share/tilezed/config/ directory (I copied the one that were created before), that way it works by not looking for the files from the home directory. It' It seems that looking for files there is broken for me for some reason It's a very hacky solution, so a proper fix would be welcome (especially as I see there's a "might fail" code. I might take a look and at least post an issue on GitHub if I won't forget EDIT2: While it allows the program to run, it can't save anything. I gotta troubleshoot the issue further it seems… The old version works fine with saving. EDIT3: It turned out to be more complicated; it seems that the software can't write to my home folder sometimes, this also happened for me with the old version. I saved stuff in /tmp temporarily, and it seems to work! Something worth to take a closer look indeed, but at least I got to run stuff on the latest version. Edited June 7, 2021 by Faalagorn EDIT3 PseudonymousEd 1 Link to comment Share on other sites More sharing options...
Nazarito22 Posted June 7, 2021 Share Posted June 7, 2021 On 4/28/2021 at 7:16 PM, Хибити\Hibiti [BLR] said: EasyPickins Please add support for horizontal and vertical walls. It was really cool and added more variety for us as map and building creators. I hope it can be done, and I am more than sure that people want it. If you doubt that we will not find a use for these horizontal and vertical walls - do not hesitate) For front walls with window needs new animation of climb over. This is impossible at the moment. Link to comment Share on other sites More sharing options...
Urbs Posted June 8, 2021 Share Posted June 8, 2021 Hi i've downloaded the tools and tiles but when using the Building Editor i get weird textures. I've added a screenshot showing what i mean. Nazarito22 1 Link to comment Share on other sites More sharing options...
Nazarito22 Posted June 11, 2021 Share Posted June 11, 2021 Please make that when you place the item on the ground, the vegetation layer under object is clear automatically. It is wildly inconvenient to switch the brush to remove excess grass every time so that the subject is visible. Link to comment Share on other sites More sharing options...
JustLith0224 Posted August 8, 2021 Share Posted August 8, 2021 im having an issue. when i double click to edit a cell in WorldEd, everything is just a bunch of red question marks. Link to comment Share on other sites More sharing options...
Nakvili Posted August 10, 2021 Share Posted August 10, 2021 (edited) Hеy everyone! I have some issue with missing tiles: appliances_01 blueprints_01 fixtures_01 fixtures_windows_detailing_02 floors_overlay_street_01 floors_overlay_tiles_01 floors_overlay_tiles_02 floors_overlay_wood_01 foraging_01 location_business_distillery_01 location_community_church_small_02 location_entertainment_gallery_01 location_entertainment_gallery_02 location_military_generic_01 location_military_knox_01 location_military_tent_01 location_restaurant_spiffos_03 missing_tileset_666 seating_01 signs_one-off_02 signs_one-off_03 signs_one-off_04 storage_01 vegetation_wall_01 walls_house_blocks_01 walls_house_blocks_01_MIRRORED walls_house_blocks_LIGHT_01 walls_house_blocks_LIGHT_01_MIRRORED walls_house_brick_01 walls_house_brick_01_MIRRORED walls_house_brick_LIGHT_01 walls_house_brick_LIGHT_01_MIRRORED walls_house_clapboard_01 walls_house_clapboard_01_MIRRORED walls_house_clapboard_LIGHT_01 walls_house_clapboard_LIGHT_01_MIRRORED walls_house_flatstone_01 walls_house_flatstone_01_MIRRORED walls_house_smooth_01 walls_house_smooth_01_MIRRORED walls_house_stone_01 walls_house_stone_01_MIRRORED walls_house_trailer_01 walls_house_trailer_01_MIRRORED walls_house_wood_01 walls_house_wood_01_MIRRORED Where I can find them? Edited August 10, 2021 by Nakvili Delirio 1 Link to comment Share on other sites More sharing options...
Arend Posted October 4, 2021 Share Posted October 4, 2021 On 6/6/2021 at 2:33 PM, Faalagorn said: <snip> I also have the same issue on Void Linux, I've gone the option of running the editors through Wine but I would like to run them natively if I can. Did you find a proper solution? Link to comment Share on other sites More sharing options...
Eggon Posted January 13, 2022 Share Posted January 13, 2022 So how exactly do you open game's assets with this app? In the I don't find any .tmx files, tried to open some .bin (worldmap.xml.in) - that didn't work either. I would like to browse textures of objects (not items). Link to comment Share on other sites More sharing options...
RingoD123 Posted January 14, 2022 Share Posted January 14, 2022 2 hours ago, Eggon said: So how exactly do you open game's assets with this app? In the I don't find any .tmx files, tried to open some .bin (worldmap.xml.in) - that didn't work either. I would like to browse textures of objects (not items). Make sure you have downloaded and set up the tiles folder in both TileZed and WorldEd. If you are trying to open the vanilla map then you are out of luck. Any/all map mods need to be created from scratch. Link to comment Share on other sites More sharing options...
Eggon Posted January 14, 2022 Share Posted January 14, 2022 11 minutes ago, RingoD123 said: Make sure you have downloaded and set up the tiles folder in both TileZed and WorldEd. If you are trying to open the vanilla map then you are out of luck. Any/all map mods need to be created from scratch. I'd just like to browse vanilla textures (need to use their names), not the actual maps. I found in the TileZed the sub-app for .tiles files and I tried to open them, but I get this mess: How can I make them open properly? Link to comment Share on other sites More sharing options...
RingoD123 Posted January 14, 2022 Share Posted January 14, 2022 25 minutes ago, Eggon said: I'd just like to browse vanilla textures (need to use their names), not the actual maps. I found in the TileZed the sub-app for .tiles files and I tried to open them, but I get this mess: How can I make them open properly? Looks like you havnt set up the tiles properly. In Tilezed you need to click on Tools and then Tilesets and then make sure the Tiles Folder is pointed at the Tiles folder you downloaded and not the 2x folder inside of it. Link to comment Share on other sites More sharing options...
Eggon Posted January 14, 2022 Share Posted January 14, 2022 19 hours ago, RingoD123 said: Looks like you havnt set up the tiles properly. In Tilezed you need to click on Tools and then Tilesets and then make sure the Tiles Folder is pointed at the Tiles folder you downloaded and not the 2x folder inside of it. What folder is the "Tiles folder that I downloaded"? Is that some folder of the game? Which one? The only "2x" folders in PZ's folder are subfolders of some "fonts" folders which I expect are something different. TileZed does not have any "Tiles" or "2x" subfolders either. Link to comment Share on other sites More sharing options...
Ciber Ninja Posted January 14, 2022 Share Posted January 14, 2022 10 minutes ago, Eggon said: What folder is the "Tiles folder that I downloaded"? Is that some folder of the game? Which one? The only "2x" folders in PZ's folder are subfolders of some "fonts" folders which I expect are something different. TileZed does not have any "Tiles" or "2x" subfolders either. The link at the very top of this page that says "Tileset Images" Link to comment Share on other sites More sharing options...
Eggon Posted January 14, 2022 Share Posted January 14, 2022 58 minutes ago, Ciber Ninja said: The link at the very top of this page that says "Tileset Images" Oh, ok, thank you! That worked, I can see most of the images now. Is there a way to see the actual sprite names as later used by objects in their respective sprite properties? When I hover over the images only "GID xxxxx" appears. Clicking on the image does nothig either. Link to comment Share on other sites More sharing options...
Kazuki Posted February 26, 2022 Share Posted February 26, 2022 I have a problem when in try to stard PzWorldEd a box text appear and it's write "The Tilesets.txt file doesn't exist. (while reading Tilesets.txt)" how can I fix the problem please ? Link to comment Share on other sites More sharing options...
HeckenDiver Posted March 2, 2022 Share Posted March 2, 2022 Inside tilezed there is a file called config.exe... run it and set the path toyour worlded-folder(important, close the tools before doing that), when done start both worlded and tileset and go into each settingstab, setup both tools with thepaths it asked for in the settings, afterwards inside tilezed click on tools/Tilesets and also set the correct path. This should fix it, although im not a superpro... could be that i miss/overseeing something... Link to comment Share on other sites More sharing options...
NachoNinjaGnome Posted March 3, 2022 Share Posted March 3, 2022 On 4/7/2021 at 4:16 PM, EasyPickins said: Tiles Tileset images For Windows TileZed + WorldEd 32-bit TileZed + WorldEd 64-bit Can't seem to DL these files. Keep getting "Failed - Network error" and "Failed - Server problem". It keeps getting to the last few seconds of the DL before it fails. Thought it might just be a temporary issue... It's been doing it for over 12 hours, at least. Link to comment Share on other sites More sharing options...
RingoD123 Posted March 3, 2022 Share Posted March 3, 2022 37 minutes ago, NachoNinjaGnome said: Can't seem to DL these files. Keep getting "Failed - Network error" and "Failed - Server problem". It keeps getting to the last few seconds of the DL before it fails. Thought it might just be a temporary issue... It's been doing it for over 12 hours, at least. You're trying to download a version that is nearly a year old, the newest version of the tools are here: and the latest tiles are here: Link to comment Share on other sites More sharing options...
NachoNinjaGnome Posted March 3, 2022 Share Posted March 3, 2022 2 hours ago, RingoD123 said: You're trying to download a version that is nearly a year old Ah, I see... thank you. Somebody should probably edit this post with a OUTDATED or OBSOLETE notification and the links to the latest. I was looking at an even older page that had something saying that this page had the newest links. Link to comment Share on other sites More sharing options...
NachoNinjaGnome Posted March 3, 2022 Share Posted March 3, 2022 13 hours ago, RingoD123 said: and the latest tiles are here: Got the same result with the new links. Could be due to the fact that I'm using a mobile hotspot. I don't, currently, have internet at my place. Link to comment Share on other sites More sharing options...
RingoD123 Posted March 4, 2022 Share Posted March 4, 2022 5 hours ago, NachoNinjaGnome said: Got the same result with the new links. Could be due to the fact that I'm using a mobile hotspot. I don't, currently, have internet at my place. Yeah I'm guessing it's related to your internet connection as I've just tried the links and they work fine. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now