Jump to content

RingoD123

The Indie Stone
  • Posts

    450
  • Joined

  • Last visited

Everything posted by RingoD123

  1. Try with this in your distributions.lua instead: Distributions = Distributions or {}; local STPOdistributionTable = { policestorage = { locker = { procedural = true, procList = { {name="PoliceStorageGuns", min=0, max=99, forceForTiles="furniture_storage_02_8;furniture_storage_02_9;furniture_storage_02_10;furniture_storage_02_11"}, {name="PoliceStorageOutfit", min=0, max=99, forceForTiles="furniture_storage_02_4;furniture_storage_02_5;furniture_storage_02_6;furniture_storage_02_7"}, {name="StorageOutfitRosewoodSD", min=10, max=99, forceForZones="RosewoodSDL"}, }, dontSpawnAmmo = true, }, metal_shelves = { procedural = true, procList = { {name="PoliceStorageGuns", min=0, max=99, weightChance=100}, }, dontSpawnAmmo = true, } }, } table.insert(Distributions, 2, STPOdistributionTable); If your zone is being added to the vanilla world then the above code should work for you, all it is doing is adding your custom procedural definition into the existing roomdef (policestorage) and tiledef (locker) and stating it will only work inside a zone named RosewoodSDL so should only take effect where your zone is placed. In your original example you were using a custom roomdef (policestoragerw) and a custom tiledef (lockerrw) which wont work unless you have created a building with that roomdef and placed it on the map and added a new tile with that name.
  2. At the moment the best way to recreate a vanilla cell is to use this guide: along with the online map to use as a reference: https://map.projectzomboid.com/ Although you might find it easier to choose a cell around the town that has less buildings etc that need recreated.
  3. If you are trying to overwrite the loot in a vanilla location then you will be unable to set a custom zone as this needs done in worldEd before the map is exported. Your best bet would be to recreate the cell or add a new cell, and then add your new custom zone over the area you want to contain your new loot. Your above code should then work.
  4. Using 2 in that line guarantees that your mod gets added to the loot tables after the vanilla items do.
  5. In Tiled click on "Tools" and then "Tilesets" and make sure the folder location is set to the "tiles" folder you downloaded and not the "2x" folder inside of it, then do the same in WorldEd by clicking on "Edit" and then "Preferences" and making sure the Tiles Directory is also set to the "tiles" folder and not the "2x" folder.
  6. No. The lists you are adding your books to already have a lot of items in them with a relatively small amount of rolls. You could try upping the rolls of the lists you are adding to or significantly raise the weight you are attributing to your items to make them a lot more likely to be rolled. Also, make sure your HBMdistribution.lua is placed in your mods "media\lua\server\items" folder.
  7. Looks like you are using the code that worked before update 41.53 Use this instead: local function preDistributionMerge() table.insert(ProceduralDistributions.list.BookStoreBooks.items, "HBM.BookStrength1"); table.insert(ProceduralDistributions.list.BookStoreBooks.items, 8); table.insert(ProceduralDistributions.list.LibraryBooks.items, "HBM.BookStrength1"); table.insert(ProceduralDistributions.list.LibraryBooks.items, 5); end Events.OnPreDistributionMerge.Add(preDistributionMerge); The above code is how you add new items to the procedural distributions in 41.53 and above, just make sure your rolls are sufficient to get them to spawn often enough, it's also a good idea to use sandbox mode and set loot options to abundant, this should make it easier to find your items in places you added them.
  8. Depends on the road you're wanting to make, the best way to know is to check: https://map.projectzomboid.com/ You can then see and count how wide every type of road is in the vanilla map.
  9. Yes, all bookshelves, shelves, magazine racks etc get populated with their "world filler" items in game when there is stuff on the shelves to be looted.
  10. Yes, you would want to make "lots" like this in BuildingEd and then place them in your world using WorldEd.
  11. Remove the wall trims using the window on the right hand side of BuildingEd before placing rooms/walls. They will be under: Trim - Interior Walls and Trim - Exterior Walls set both to none. Once you have placed your walls/rooms you can then add wall trim separately afterwards.
  12. Your images should either be BMP or PNG. You need both and they should be in the same folder as each other. they should be MyMap.bmp and MyMap_veg.bmp or MyMap.png and MyMap_veg.png.
  13. So you have a "media/lua/server/items" folder in your mod structure yes? and you have both a "mydistributions.lua" file and a "myproceduraldistributions.lua file in there? The code in your "mydistributions.lua" works but you cant find the items you're adding through your "myproceduraldistributions.lua" file in bedroom wardrobes? Have you tried adding an edited version of the "bedroom" "Wardrobe" definition in your "mydistributions.lua" file to increase the "min" values to 1 or more on the proclist entries?
  14. In what way does it not work? Are you getting any errors from it in your console log? Some of your entries don't have rolls in them, some only have a small amount of rolls (meaning they will only spawn 1-2 items at max). 100 does not mean a 100% chance, it is a weight, meaning it will be more likely to be rolled than items with a smaller weight. All of these values are also changed by your games loot settings, for example if using sandbox mode and you set all loot to rare, you will get less loot spawning than the values in your distribution entries.
  15. Your procedural Distribution specifies that only 1 item total will be rolled per container, not one of each. Your distribution specifies that it only has to roll for a single container of that type within a pharmacystorage roomdef, and up to a max of 6 containers. So the way you currently have it means that it would only spawn a single CustomItem each on anywhere between 1 to 6 metal shelves.
  16. The above guide does. First create and save a custom procedural distributions lua file such as MyMapModNameProceduralDistributions.lua in your mods "media/lua/server/items" folder, then use the following code: local function preDistributionMerge() ProceduralDistributions.list.MagazineRackMapsRingo = { rolls = 6, items = { "MuldraughMap", 5, "WestpointMap", 5, "MarchRidgeMap", 5, "RosewoodMap", 5, "RiversideMap", 5, "BedfordMap", 5, "BedfordMap", 5, }, } end Events.OnPreDistributionMerge.Add(preDistributionMerge); That is an example of a new Procedural Distributions entry. Then you want to add that new entry to existing definitions: Like above, create and save a custom distributions lua file, such as MyMapModNameDistributions.lua in your "media/lua/server/items" folder, the use the following code, wherever you see "bedford", use your map mod name or something unique instead: local bedforddistributionTable = { all = { shelvesmag = { procedural = true, procList = { {name="MagazineRackNewspaper", min=1, max=5}, {name="MagazineRackMixed", min=2, max=99}, {name="MagazineRackMapsRingo", min=2, max=5}, } }, } } table.insert(Distributions, 2, bedforddistributionTable); In this example these two files will add a new Procedural Distribution definition and then add that new ProcDis to the existing shelvesmag container in the all room definition.
  17. This guide will teach you how to create Stash Map mods. If you have not already then it is worth checking out this guide on how to add lootable maps to the game world using the new procedural distributions system: Once your lootable map is in game (or if you are wanting to add more using the ones already in game) you can then go ahead with this tutorial for creating your Stash maps. The first thing that you need to do is create a new folder named "StashDescriptions" in your mods "media\lua\shared" folder, if none of these folders already exist then create them. Then you will need to create a StashDesc.lua file in the StashDescriptions folder, name it something unique for your mod (e.g bedfordStashDesc.lua). Once you have created the new file, open it and paste the following line in as the first line: Spoiler require "StashDescriptions/StashUtil"; Now you can start adding your stash maps, just leave a blank line after the first line you added above. Below are 2 examples each of the different stash types that can be made: Spoiler -- guns local stashMap1 = StashUtil.newStash("BedfordStashMap1", "Map", "Base.BedfordMap", "Stash_AnnotedMap"); stashMap1.spawnOnlyOnZed = true; stashMap1.daysToSpawn = "10"; stashMap1.zombies = 5 stashMap1.traps = "5"; stashMap1.barricades = 50; stashMap1.buildingX = 13782; stashMap1.buildingY = 10524; stashMap1.spawnTable = "GunCache2"; stashMap1:addContainer("GunBox","floors_interior_tilesandwood_01_62",nil,"bedroom",nil,nil,nil); stashMap1:addStamp("X",nil,343,281,0,0,0); stashMap1:addStamp(nil,"Stash_WpMap1_Text1",13266,10178,0,0,0); stashMap1:addStamp("Circle",nil,13605,10374,0,0,0); stashMap1:addStamp(nil,"Stash_WpMap1_Text2",13550,10396,0,0,0); stashMap1:addStamp("Exclamation",nil,13452,10182,1,0,0); stashMap1:addStamp(nil,"Stash_WpMap1_Text3",13475,10179,1,0,0); local stashMap1 = StashUtil.newStash("BedfordStashMap2", "Map", "Base.BedfordMap", "Stash_AnnotedMap"); stashMap1.daysToSpawn = "0"; stashMap1.buildingX = 13751; stashMap1.buildingY = 10531; stashMap1.zombies = 2; stashMap1.barricades = 50; stashMap1.spawnTable = "GunCache2"; stashMap1:addContainer("GunBox","floors_interior_tilesandwood_01_62",nil,"bedroom",nil,nil,nil); stashMap1:addContainer("GunBox","carpentry_01_16",nil,nil,nil,nil,nil); stashMap1:addStamp("Target",nil,13243,10181,0,0,0); stashMap1:addStamp("House",nil,13605,10374,0,0,0); stashMap1:addStamp("Lightning",nil,13452,10182,1,0,0); -- shotgun local stashMap1 = StashUtil.newStash("BedfordStashMap3", "Map", "Base.BedfordMap", "Stash_AnnotedMap"); stashMap1.daysToSpawn = "0"; stashMap1.buildingX = 13620; stashMap1.buildingY = 10515; stashMap1.zombies = 2; stashMap1.barricades = 50; stashMap1.spawnTable = "ShotgunCache2"; stashMap1:addStamp("Skull",nil,13380,10274,0,0,0); stashMap1:addStamp("X",nil,13520,10407,0,0,0); stashMap1:addStamp("Question",nil,13873,10235,1,0,0); local stashMap1 = StashUtil.newStash("BedfordStashMap4", "Map", "Base.BedfordMap", "Stash_AnnotedMap"); stashMap1.daysToSpawn = "0"; stashMap1.buildingX = 13596; stashMap1.buildingY = 10516; stashMap1.zombies = 2; stashMap1.barricades = 50; stashMap1.spawnTable = "ShotgunCache2"; stashMap1:addContainer("ShotgunBox",nil,"Base.Bag_DuffelBag",nil,nil,nil,nil); stashMap1:addContainer("ShotgunBox","carpentry_01_16",nil,nil,nil,nil,nil); stashMap1:addStamp("X",nil,13380,10274,0,0,0); stashMap1:addStamp("House",nil,13520,10407,0,0,0); stashMap1:addStamp("Target",nil,13873,10235,1,0,0); -- tools local stashMap1 = StashUtil.newStash("BedfordStashMap5", "Map", "Base.BedfordMap", "Stash_AnnotedMap"); stashMap1.daysToSpawn = "0"; stashMap1.buildingX = 13090; stashMap1.buildingY = 10897; stashMap1.zombies = 2; stashMap1.barricades = 50; stashMap1.spawnTable = "ToolsCache1"; stashMap1:addStamp("Circle",nil,13372,10366,0,0,0); stashMap1:addStamp("Exclamation",nil,13650,10325,0,0,0); local stashMap1 = StashUtil.newStash("BedfordStashMap6", "Map", "Base.BedfordMap", "Stash_AnnotedMap"); stashMap1.daysToSpawn = "0"; stashMap1.buildingX = 13112; stashMap1.buildingY = 10899; stashMap1.zombies = 2; stashMap1.barricades = 50; stashMap1.spawnTable = "ToolsCache1"; stashMap1:addContainer("ToolsBox",nil,"Base.Bag_DuffelBagTINT",nil,nil,nil,nil); stashMap1:addContainer("ToolsBox","carpentry_01_16",nil,nil,nil,nil,nil); stashMap1:addStamp("Exclamation",nil,13372,10266,0,0,0); stashMap1:addStamp("Exclamation",nil,13650,10325,0,0,0); -- survivor houses local stashMap1 = StashUtil.newStash("BedfordStashMap7", "Map", "Base.BedfordMap", "Stash_AnnotedMap"); stashMap1.daysToSpawn = "0"; stashMap1.buildingX = 13248; stashMap1.buildingY = 11313; stashMap1.zombies = 2; stashMap1.barricades = 50; stashMap1.spawnTable = "SurvivorCache1"; stashMap1:addContainer("GunBox","carpentry_01_16",nil,nil,nil,nil,nil); stashMap1:addContainer("ShotgunBox",nil,"Base.Bag_DuffelBagTINT",nil,nil,nil,nil); stashMap1:addStamp("House",nil,13248,10418,0,0,0); stashMap1:addStamp("Target",nil,13218,10359,0,0,0); local stashMap1 = StashUtil.newStash("BedfordStashMap8", "Map", "Base.BedfordMap", "Stash_AnnotedMap"); stashMap1.daysToSpawn = "0"; stashMap1.buildingX = 13242; stashMap1.buildingY = 11288; stashMap1.zombies = 2; stashMap1.barricades = 50; stashMap1.spawnTable = "SurvivorCache1"; stashMap1:addContainer("ToolsBox",nil,"Base.Bag_DuffelBagTINT",nil,nil,nil,nil); stashMap1:addContainer("ToolsBox","carpentry_01_16",nil,nil,nil,nil,nil); stashMap1:addContainer("GunBox","carpentry_01_16",nil,nil,nil,nil,nil); stashMap1:addContainer("ShotgunBox",nil,"Base.Bag_DuffelBagTINT",nil,nil,nil,nil); stashMap1:addStamp("House",nil,13248,10418,0,0,0); stashMap1:addStamp("X",nil,13218,10359,0,0,0); As you can see with the examples above each map has its own unique name given as the first parameter in the brackets. Next up is it's item type, which is obviously Map, then the in game item it actually uses, in this case the map we added to the base game from the lootable map tutorial listed above. The last parameter is the "Stash_AnnotedMap" custom name which is needed, and yes it is spelled incorrectly. We can govern how many in game days it takes before the stash maps become findable, how many barricades are put up around the building, how many traps are inside and how many zombies should spawn inside, these are maximum values, not guaranteed values. We can also choose if the stash maps can only be found on zombies or not. The buildingX and buildingY co-ordinates are the co-ordinates of the building you want the stash to appear in, in world co-ordinates, you can always use the https://map.projectzomboid.com/ website to help with your co-ordinates if need be. Next we have to choose what loot table the stash will pull from, in the above examples we are using SurvivorCache1, ToolsCache1, ShotgunCache2 and Guncache2, these act like regular room definitions but for the whole building. Don't forget you can always check the vanilla stash descriptions in the games "media\lua\shared\StashDescriptions" folder In the above examples you can see the "addStamp" lines, these will add stamps to your base lootable maps such as arrows, exclamation marks etc, these icons can be found in your zomboid install folder in "media/ui/LootableMaps/". All of the text references ("Stash_WpMap4_Text1" etc) can be found in the games "media\lua\shared\translate\en\Stash_EN.txt" file. The X and Y co-ordinates to place the stamps are in world co-ordinates in the same fashion as adding a banner or legend to a regular map. You can then also specify a custom colour for your stamp using the last 3 parameters for R,G and B. As you can see in some of the example above we are also spawning in some new containers, some examples are spawning in duffel bags, some wooden crates (carpentry_01_16) and some even as "hidden" floor stashes. Lets take a quick look at each: Spoiler stashMap1:addContainer("ToolsBox",nil,"Base.Bag_DuffelBag",nil,nil,nil,nil); - Here we are adding a duffelbag and populating it from the "ToolsBox" definition. It will spawn in a random position in the building. stashMap1:addContainer("GunBox","carpentry_01_16",nil,nil,nil,nil,nil); - Here we are adding a wooden crate and populating it from the "GunBox" definition. It will spawn in a random position in the building. stashMap1:addContainer("GunBox","floors_interior_tilesandwood_01_62",nil,"bedroom",nil,nil,nil); - Here we are adding a floor stash to a bedroom and populating it using the "GunBox" definition. Notice how if a container is using an item (duffelbag) it does not need a tile (carpentry_01_16 or floors_interior_tilesandwood_01_62) and vice-versa. Also notice how a room is specified with the floor stash. The last 3 parameters are for an X,Y and Z postion within the buildings lot, but are not used in the above examples. These Stash definitions can be found in distributions.lua and as with other distributions can be modded or completely new ones added. As well as the lootable map guide posted earlier in this guide, there is also this guide on customizing loot that can be helpful: And that's it, you now have custom Annotated Stash Maps!
  18. All of the new zones have now been added to the tutorial as well as the lootable map guide being updated, current room definitions updated and a new guide on customizing loot:
  19. Here is an example of a simple map mod using custom room definitions, custom loot zones and custom procedural distribution lists using the new loot distribution system (41.51+). 3 gas stations have been placed in a cell intended to be added to the vanilla map via a map mod, the Northern most station has a custom loot zone placed over it as shown below: It's best to use lootZone names that will be unique to your map mod to stop any possible conflict with other map mods which could cause unintended loot to spawn. The Southern most station has a pre-existing roomDef that is already defined in the Distributions.lua file, the top 2 both have a custom roomDef as shown below: Again it's best to use roomdefinitions that will be unique to your map mod, otherwise other map mods might use the same as you and may cause conflicts, causing one or more maps to start spawning unintended loot. We have also added a new item into the game, a lootable map of this new area as per this guide: , but instead of adding the item to an existing procedural distribution entry or room def, we are instead going to add a custom procedural distribution entry along with a custom room definition to take advantage of the custom roomDef we used in the top 2 gas stations and the custom loot zone we placed on the Northern most station. First create and save a custom procedural distributions lua file such as MyMapModNameProceduralDistributions.lua in your mods "media/lua/server/items" folder, then use the following code: Spoiler local function preDistributionMerge() ProceduralDistributions.list.MagazineRackMapsRingo = { rolls = 6, items = { "MuldraughMap", 5, "WestpointMap", 5, "MarchRidgeMap", 5, "RosewoodMap", 5, "RiversideMap", 5, "BedfordMap", 5, "BedfordMap", 5, }, } end Events.OnPreDistributionMerge.Add(preDistributionMerge); In the above example we have added a new procedural distributions entry named "MagazineRackMapsRingo", we have specified how many rolls it gets and the items it rolls from, in this case the new lootable map we added as well as the base game maps, as well as the "weight" of each item, with a higher number being more likely to be rolled. Adding an item in multiple times is another good way of getting it to roll more than others. The next thing we need to do is create the new room Definition in a custom distributions lua file, like above, create and save a custom distributions lua file, such as MyMapModNameDistributions.lua in your "media/lua/server/items" folder, the use the following code, wherever you see "bedford", use your map mod name or something unique instead: Spoiler local bedforddistributionTable = { bedfordgasstation = { shelvesmag = { procedural = true, procList = { {name="MagazineRackMapsRingo", min=5, max=10, forceForZones="Unique", weightChance=100}, {name="MagazineRackMixed", min=2, max=5, forceForZones="Unique", weightChance=100}, {name="MagazineRackMapsRingo", min=1, max=5, weightChance=100}, {name="MagazineRackNewspaper", min=1, max=1, weightChance=100}, {name="MagazineRackMixed", min=0, max=99, weightChance=100}, } }, }, all = { shelvesmag = { procedural = true, procList = { {name="MagazineRackMaps", min=1, max=5, weightChance=100}, {name="MagazineRackNewspaper", min=1, max=1, weightChance=100}, {name="MagazineRackMixed", min=0, max=99, weightChance=100}, {name="MagazineRackMapsRingo", min=1, max=5, weightChance=100}, } }, } } table.insert(Distributions, 2, bedforddistributionTable); In the above example we have added a new entry for the "bedfordgasstation" roomDef we used in buildingEd and then defined what containers we would like it have rules for, in this case "shelvesmag" (any other containers in this room will take thier loot pulls from the "all" definition as we have not specified rules for them in this custom definition). We have then set it to procedural and defined it's procList. You can see that the first two lines of the procList use the forceForZones option which in this case is set to use the custom zone (Unique) we placed over the Northern most gas station, meaning that particular gas station has a different set of loot than the middle one, which has the exact same roomDef. The next 4 lines will govern the loot for the middle gas station as it has the same custom roomDef but not the custom lootZone. In this example the changes are small but you can imagine how you could make them wildly different and include rules for many more containers. Lastly we have also added an updated proclist for the existing shelvesmag containers in the "all" room definition to also pull from our new Procedural Distributions entry, this will apply to the Southern most gas station as it still uses the fossoil room def which does not have any rules for the shelvesmag container so therefore pulls it shelvesmag loot from the "all" definition. This is just a basic example, but hopefully with a bit of imagination you can see how you can now define your map mod and loot as much as you like. There is also a brilliant visual guide by @TheCommanderwhich can be found here:
  20. There is a new beta in the list on Steam - build 41.50 Previous Build To Complete Saves.
  21. Listed below are all of the current new room definitions, which should be used for internal room names in buildingEd. Under each roomdef is a list of the containers that definition has rules for. Any container you place that does not have an entry in the roomdef you have used will instead pull it's loot from the "all" definition for that container: aesthetic counter metal_shelves crate aestheticstorage metal_shelves crate all displaycasebakery restaurantdisplay plankstash cashregister campfire clothingdryer clothingwasher clothingrack freezer dishescabinet dresser postbox corn logs locker fruitbusha fruitbushb fruitbushc fruitbushd fruitbushe inventorymale inventoryfemale shelvesmag desk filingcabinet stove microwave medicine wardrobe crate counter sidetable freezer fridge vendingsnack vendingpop bin officedrawers metal_shelves shelves other armyhanger metal_shelves counter locker armystorage locker metal_shelves armysurplus shelves metal_shelves clothingrack artstore counter shelves bakery displaycase displaycasebakery counter grocerstand bakerykitchen counter crate freezer fridge metal_shelves restaurantdisplay bandkitchen counter fridge overhead bandlivingroom locker bandmerch clothingrack metal_shelves shelves bar shelves counter bin barkitchen fridge freezer shelves counter bin barstorage crate bin batfactory crate metal_shelves bathroom counter medicine batstorage crate metal_shelves batteryfactory counter crate metal_shelves batterystorage crate bedroom wardrobe plankstash sidetable locker beergarden bin counter fridge bookstore shelves counter bowllingalley shelves breakroom counter fridge overhead shelves brewery counter crate laundrydryerbasic metal_shelves brewerystorage crate laundrydryerbasic metal_shelves burgerstorage metal_shelves crate burgerkitchen freezer fridge counter butcher displaycasebutcher fridge freezer shelves counter cabinetfactory crate metal_shelves overhead cabinetshipping counter metal_shelves overhead cafe counter displaycase cafekitchen fridge freezer counter shelves cafeteria counter displaycasebakery metal_shelves shelves restaurantdisplay cafeteriakitchen counter crate freezer fridge metal_shelves restaurantdisplay camerastore counter crate displaycase metal_shelves shelves camping clothingrack fridge freezer counter shelves campingstorage crate candystorage metal_shelves crate candystore displaycase counter carsupply counter metal_shelves shelves changeroom locker counter chinesekitchen counter crate freezer fridge metal_shelves restaurantdisplay chineserestaurant counter restarantdisplay classroom counter desk metal_shelves shelves closet crate metal_shelves clothingstorage clothingrack metal_shelves crate clothingstore displaycase shelves clothingrack counter construction counter crate conveniencestore fridge freezer counter shelves cornerstore fridge freezer counter shelves cornerstorestorage crate metal_shelves daycare counter fridge metal_shelves shelves wardrobe deepfry kitchen counter crate freezer fridge metal_shelves restaurantdisplay dentiststorage metal_shelves departmentstorage crate metal_shelves wardrobe sidetable departmentstore counter displaycase shelves wardrobe sidetable dinerkitchen counter crate freezer fridge metal_shelves restaurantdisplay dining counter shelves dinerkitchen freezer fridge counter dogfoodfactory counter crate metal_shelves dogfoodshipping crate metal_shelves dogfoodstorage freezer fridge crate donut dining counter donut kitchen counter crate metal_shelves restaurantdisplay donut kitchenstorage crate freezer fridge metal_shelves electronicsstorage crate shelves metal_shelves electronicsstore displaycase counter shelves empty crate freezer fridge counter shelves metal_shelves wardrobe factory counter crate metal_shelves factorystorage locker farmstorage all firestorage metal_shelves fishchipskitchen counter crate freezer fridge metal_shelves restaurantdisplay fishingstorage counter crate fossoil fridge freezer counter shelves fryshipping crate furniturestorage freezer fridge wardrobe sidetable crate furniturestore freezer fridge wardrobe counter garagestorage other bin crate gardenstore counter clothingrack metal_shelves shelves crate gasstorage crate metal_shelves gasstore fridge freezer counter shelves generalstore fridge freezer counter shelves metal_shelves generalstorestorage other giftstorage crate giftstore shelves displaycase counter gigamart grocerstand displaycasebutcher displaycasebakery freezer fridge counter shelves crate gigamartkitchen counter grocery grocerstand displaycasebakery displaycasebutcher freezer fridge counter shelves smallcrate crate grocerystorage metal_shelves fridge freezer crate gunstore counter displaycase locker metal_shelves gunstorestorage all gym metal_shelves hall counter hospitalstorage metal_shelves housewarestore shelves hunting locker metal_shelves other icecream counter displaycasebakery freezer restaurantdisplay icecreamkitchen counter freezer fridge displaycasebakery restaurantdisplay italiankitchen counter crate freezer fridge metal_shelves restaurantdisplay italianrestaurant counter displaycase restaurantdisplay janitor metal_shelves counter crate jayschicken_kitchen restaurantdisplay freezer fridge counter jewelrystorage metal_shelves crate jewelrystore displaycase kennels counter metal_shelves kitchen counter overhead shelves kitchen_crepe fridge freezer counter kitchenwares shelves knifefactory counter crate metal_shelves knifeshipping crate knifestore shelves lasertag crate laundry counter leatherclothesstore displaycase shelves clothingrack counter library counter liquorstore counter shelves fridge freezer livingroom shelves counter overhead lobby counter loggingfactory crate loggingtruck crate mechanic wardrobe metal_shelves medical counter metal_shelves medicalstorage counter metal_shelves metalshop counter crate metal_shelves mexicankitchen counter crate freezer fridge metal_shelves restaurantdisplay motelroom fridge freezer bin dresser wardrobe sidetable metal_shelves motelroomoccupied freezer fridge bin dresser wardrobe sidetable movierental clothingrack counter crate metal_shelves shelves musicstore shelves newspaperprint crate metal_shelves newspapershipping crate metal_shelves newspaperstorage crate office crate counter desk freezer fridge metal_shelves officestorage crate metal_shelves optometrist counter paintershop crate metal_shelves overhead pawnshop counter clothingrack crate displaycase metal_shelves shelves pawnshopcooking all pawnshopoffice crate locker metal_shelves shelves pawnshopstorage crate locker metal_shelves pharmacy counter fridge freezer shelves pharmacystorage metal_shelves fridge freezer counter photoroom counter shelves picnic crate pileocrepe counter restaurantdisplay pizzakitchen fridge freezer counter metal_shelves displaycase restaurantdisplay pizzawhirled wardrobe displaycase plazastorel counter policestorage locker metal_shelves pool locker post counter poststorage all potatostorage crate laundrydryerbasic prisoncells wardrobe producestorage counter crate metal_shelves radiofactory counter crate metal_shelves radioshipping crate metal_shelves radiostorage crate metal_shelves restaurant counter shelves restaurantkitchen freezer fridge counter schoolstorage counter crate metal_shelves desk seafoodkitchen counter crate freezer fridge metal_shelves restaurantdisplay security locker sewingstorage metal_shelves crate sewingstore counter shelves shed other logs shoestore shelves counter sodatruck crate spiffo dining counter restaurantdisplay spiffoskitchen freezer fridge counter spiffosstorage metal_shelves crate sportstorage metal_shelves shelves crate clothingrack counter sportstore shelves clothingrack counter storageunit all stripclub dresser sushidining counter displaycase sushikitchen counter crate freezer fridge metal_shelves restaurantdisplay theatre counter theatrekitchen freezer fridge counter theatrestorage crate toolstore shelves counter toystore shelves toystorestorage shelves crate warehouse crate westernkitchen counter crate freezer fridge metal_shelves restaurantdisplay whiskeybottling counter crate laundrydryerbasic metal_shelves wirefactory counter crate metal_shelves zippeestorage crate metal_shelves zippeestore fridge freezer counter shelves
  22. RingoD123

    Missing tiles

    They are in carpentry_02
×
×
  • Create New...