would like to be able to see what prefab names are referenced to each group.
For instance, the group "Scientists" below "Scarecrow" would like to know what group of npcs it applies.
i have seen some inside the code, but others are missing:
Dictionary<string, string> names = new Dictionary<string, string>()
{
{"oilrig", "OilRig"},
{"excavator", "Excavator"},
{"peacekeeper", "CompoundScientist"},
{"bandit_guard", "BanditTown"},
{"_ch47_gunner", "MountedScientist"},
{"junkpile", "JunkPileScientist"},
{"scarecrow_dungeon", "DungeonScarecrow" },
{"scarecrow", "ScareCrow"},
{"military_tunnel", "MilitaryTunnelScientist" },
{"scientist_full", "MilitaryTunnelScientist"},
{"scientist_turret", "CargoShip"},
{"scientistnpc_cargo", "CargoShip"},
{"scientist_astar", "CargoShip"},
{"scientistnpc_bradley", "APCScientist" },
{"scientistnpc_bradley_heavy", "APCScientistHeavy" },
{"scientistnpc_heavy", "HeavyScientist"},
{"tunneldweller", "TunnelDweller"},
{"underwaterdweller" , "UnderwaterDweller"},
{"trainyard" , "Trainyard"},
{"airfield" , "Airfield"},
{"scientistnpc_roamtethered", "DesertScientist" },
{"arctic_research_base", "ArcticResearchBase" },
{"launch_site", "LaunchSite" },
{"nuclear_missile_silo", "NuclearMissileSilo" },
{"gingerbread", "Gingerbread" },
{"missionprovider_fishing", "MissionProviderOutpost" },
{"missionprovider_outpost", "MissionProviderFishing" },
{"missionprovider_stables", "MissionProviderStables" },
{"missionprovider_bandit", "MissionProviderBandit" },
{"boat_shopkeeper", "BoatShopkeeper" },
{"bandit_shopkeeper", "BanditShopkeeper" },
};
thanks!!