1. Does anyone now the prefab name for the new Purple crate loot container?

    Thanks in advance.
     
  2. This assets/bundled/prefabs/radtown/crate_tools.prefab
    You can see the list by using this code from this thread:
    Code:
    foreach (var str in GameManifest.Get().pooledStrings) {
        if (!str.str.Contains("crate") || !str.str.EndsWith(".prefab")) continue;
        Puts(str.str);
    }
    
     
  3. Your code does only list prefabs with the name crate in it, but that lists only half of the available loot containers ;)
     
  4. Yeah yea so what is it? Anyone found out yet?
    [DOUBLEPOST=1485817337][/DOUBLEPOST]assets/bundled/prefabs/radtown/crate_tools.prefab . <--confirmed?
     
  5. yes,
    If you want to spawn it with Build plugin
    is /plant 74
     
  6. Perfect.thanks everyone.