I'm attaching all the output examples so you all can verify or check on quickly if you ever need a POI name from 1.1 or 1.0 7dtd version.
https://archive.org/download/pois-rwgmixer/POIs.txt
The scripts in this thread are also hosted:
https://archive.org/details/pois-rwgmixer
Here is a example Python script to extract or list POI names by using a localization file.
It might be useful to use for rwgmixer.xml
findpois.py
input_file_path = r"C:\Program Files (x86)\Steam\steamapps\common\7 Days To Die\Data\Config\Localization.txt"
output_file_path = "POIs.txt"
# Read the file using UTF-8 encoding and write relevant lines to POIs.txt
with open(input_file_path, 'r', encoding='utf-8') as infile, open(output_file_path, 'w', encoding='utf-8') as outfile:
for line in infile:
if "POI,POIName" in line:
outfile.write(line)
Here is an example of what it will produce: POIs.txt
Code:
school_daycare_01,POI,POIName,,x,Poopy Pants Country Daycare,,,,,,,,,,,,,
school_daycare_02,POI,POIName,,x,Poopy Pants City Daycare,,,,,,,,,,,,,
school_daycare_03,POI,POIName,,x,Fun-Gi Daycare,,,,,,,,,,,,,
skyscraper_01,POI,POIName,,x,Dishong Tower,,,,,,,,,,,,,
skyscraper_02,POI,POIName,,x,Crack-a-Book HQ,,,,,,,,,,,,,
skyscraper_03,POI,POIName,,x,Higashi Pharmaceutical,,,,,,,,,,,,,
skyscraper_04,POI,POIName,,x,Tower Construction Site,,,,,,,,,,,,,
store_autoparts_01,POI,POIName,,x,Oreally Auto,,,,,,,,,,,,,
store_bakery_01,POI,POIName,,x,Ma Baker & Sons Bakery,,,,,,,,,,,,,
store_book_01,POI,POIName,,x,Crack-A-Book,,,,,,,,,,,,,
store_book_02,POI,POIName,,x,Crack-A-Cafe,,,,,,,,,,,,,
store_book_04,POI,POIName,,x,The Book Barn,,,,,,,,,,,,,
store_clothing_01,POI,POIName,,x,Super Savage Country,,,,,,,,,,,,,
store_clothing_02,POI,POIName,,x,Savage Country,,,,,,,,,,,,,
store_discount_01,POI,POIName,,x,Three Dollar Store,,,,,,,,,,,,,
store_electronics_01,POI,POIName,,x,MoPo-Shack,,,,,,,,,,,,,
store_electronics_02,POI,POIName,,x,Mo Power Electronics,,,,,,,,,,,,,
Last edited by a moderator: