Razor-79fcc52bfc334b0e 1 Posted December 1, 2019 Hi all I have recently changed from chernarus summer to chernarus winter for December and I now have an issue where chopping trees does not produce logs, I think this maybe due to the change of the model names of the trees. Could anybody tell me how I can source the names of the trees please? Many thanks Share this post Link to post Share on other sites
chernaruski 338 Posted December 1, 2019 You will have to add the new winter tree model names into class Woodsource in your mission > config.cpp class WoodSource { name = "Trees"; models[] = { " t_", " bo_t_", // A2 trees " str_", " Smrk_", " les_", " brg_" }; }; Winter trees used in CUP Maps are coming from CUP Terrains Core > cup_terrains_winter_plants So the only thing you will have to add is probably : // CUP Winter Trees "cup_t_" Share this post Link to post Share on other sites
Razor-79fcc52bfc334b0e 1 Posted December 1, 2019 7 minutes ago, chernaruski said: You will have to add the new winter tree model names into class Woodsource in your mission > config.cpp class WoodSource { name = "Trees"; models[] = { " t_", " bo_t_", // A2 trees " str_", " Smrk_", " les_", " brg_" }; }; Winter trees used in CUP Maps are coming from CUP Terrains Core > cup_terrains_winter_plants So the only thing you will have to add is probably : // CUP Winter Trees "cup_t_" thank you very much Chernaruski, will give that a try this evening and report back. many thanks Share this post Link to post Share on other sites
Sgt Smash 34 Posted December 1, 2019 This is from my old mission file copy paste, worked with all trees Spoiler class WoodSource { name = "Trees"; models[] = { " t_", " bo_t_", // A2 trees " str_", " Smrk_", " les_", " brg_", //Winter Chernarus Trees "CUP_t_" }; }; Hope this helps Share this post Link to post Share on other sites
Razor-79fcc52bfc334b0e 1 Posted December 1, 2019 thank you to you both @Sgt Smashand @chernaruski chopping trees is working again since adding cup_t Thanks Share this post Link to post Share on other sites