Sheepy Posted July 3, 2023 Posted July 3, 2023 I am trying to figure out if there is a way to save custom kneeboards for maps inside of the saved games folder instead of the main folder. I usually try and keep my main folder clean of any mods/skins etc. I know this already works for Aircraft but I want to try and keep charts and map data in the maps kneeboard folder. Thanks 1 i7-9700K || GTX 1080 Ti || 32Gig 3200 RAM || 1TB NVME & 1TB SSD || X56, Track IR, CH Pro Rudder Pedals
speed-of-heat Posted July 3, 2023 Posted July 3, 2023 you couid save them to the main kneeboard folder, you could try just making a folder with the terrain name (as per the main folder) and see if that works ? 1 SYSTEM SPECS: Hardware AMD 9800X3D, 64Gb RAM, 4090 FE, Virpil T50CM3 Throttle, WinWIng Orion 2 & F-16EX + MFG Crosswinds V2, Varjo Aero SOFTWARE: Microsoft Windows 11, VoiceAttack & VAICOM PRO YOUTUBE CHANNEL: @speed-of-heat
Sheepy Posted July 3, 2023 Author Posted July 3, 2023 32 minutes ago, speed-of-heat said: you couid save them to the main kneeboard folder, you could try just making a folder with the terrain name (as per the main folder) and see if that works ? I have tried this and tried to follow the same folder structure as in the main folder 1 i7-9700K || GTX 1080 Ti || 32Gig 3200 RAM || 1TB NVME & 1TB SSD || X56, Track IR, CH Pro Rudder Pedals
silverdevil Posted July 3, 2023 Posted July 3, 2023 5 hours ago, Sheepy said: I am trying to figure out if there is a way to save custom kneeboards for maps inside of the saved games folder instead of the main folder. I usually try and keep my main folder clean of any mods/skins etc. I know this already works for Aircraft but I want to try and keep charts and map data in the maps kneeboard folder. Thanks another way to try this. what i do is i create the kneeboards and put them in the individual aircraft kneeboards folder. even you have many aircraft like i do, it takes literally less than a minute to put the terrain kneeboards in their places. 1 AKA_SilverDevil Join AKA Wardogs Email Address My YouTube “The MIGS came up, the MIGS were aggressive, we tangled, they lost.” - Robin Olds - An American fighter pilot. He was a triple ace. The only man to ever record a confirmed kill while in glide mode.
speed-of-heat Posted July 3, 2023 Posted July 3, 2023 35 minutes ago, silverdevil said: another way to try this. what i do is i create the kneeboards and put them in the individual aircraft kneeboards folder. even you have many aircraft like i do, it takes literally less than a minute to put the terrain kneeboards in their places. that might work , but then i end up with maps i don't need in the kneeboard which makes cycling through pages a pain, but i agree it would work.. actually you can just drop them in kneeboards directly, if you want them everywhere 1 SYSTEM SPECS: Hardware AMD 9800X3D, 64Gb RAM, 4090 FE, Virpil T50CM3 Throttle, WinWIng Orion 2 & F-16EX + MFG Crosswinds V2, Varjo Aero SOFTWARE: Microsoft Windows 11, VoiceAttack & VAICOM PRO YOUTUBE CHANNEL: @speed-of-heat
Sheepy Posted July 3, 2023 Author Posted July 3, 2023 Yea, for now I guess I'll just use the way I know works. Hopefully someone knows something we don't :).Sent from my SM-G975F using Tapatalk 2 i7-9700K || GTX 1080 Ti || 32Gig 3200 RAM || 1TB NVME & 1TB SSD || X56, Track IR, CH Pro Rudder Pedals
MAXsenna Posted July 3, 2023 Posted July 3, 2023 that might work , but then i end up with maps i don't need in the kneeboard which makes cycling through pages a pain, but i agree it would work.. actually you can just drop them in kneeboards directly, if you want them everywhere This is why the kneeboard folder for Syria has been requested for a long time, isn't it?Anyway, I did use the Kneeboard Builder app to remove all default kneeboards, and then made packages relevant to maps/missions etc. And only kept the relevant/required ones in the respective modules like SilverDevil mentions. Haven't messed with for some time though, as I screwed up the settings, so I'm not sure that path still works.This can all be handled through mod managers, but it was so handy and logical through the Kneeboard Builder.Cheers! Sent from my MAR-LX1A using Tapatalk
silverdevil Posted July 3, 2023 Posted July 3, 2023 1 hour ago, speed-of-heat said: that might work , but then i end up with maps i don't need in the kneeboard which makes cycling through pages a pain, but i agree it would work.. actually you can just drop them in kneeboards directly, if you want them everywhere i get pretty versed in the normal operations that kneeboards for weapons and sensors do not matter. i remove those and put a particual terrain kneeboad in the AC folder and then only have a couple to scroll through. 1 AKA_SilverDevil Join AKA Wardogs Email Address My YouTube “The MIGS came up, the MIGS were aggressive, we tangled, they lost.” - Robin Olds - An American fighter pilot. He was a triple ace. The only man to ever record a confirmed kill while in glide mode.
AlaskanGrizzly Posted July 6, 2023 Posted July 6, 2023 On 7/3/2023 at 12:00 AM, Sheepy said: I am trying to figure out if there is a way to save custom kneeboards for maps inside of the saved games folder instead of the main folder. I usually try and keep my main folder clean of any mods/skins etc. I know this already works for Aircraft but I want to try and keep charts and map data in the maps kneeboard folder. Thanks You will need to modify the 'init.lua' file located at: ...\Program Files\DCS World (or DCS World OpenBeta\Scripts\Aircrafts\_Common\Cockpit\KNEEBOARD\indicator Add the following code after scan_path(user_path) around line #92. --Adds an additional kneeboard location for 'Maps' at the directory: ...Saved Games\DCS(or DCS.openbeta)\Maps local maps_path = lfs.writedir().."Maps" --Scans our custom made maps directory path and adds its images to the in-game kneeboard scan_path(maps_path) I've attached an init file with the above lines already added; just replace your original with this one. Be aware that any update or repair of DCS will reset the init file, so keep a copy of your modified file for quick replacement. You can add additional 'scan_path' lines to have it scan subfolders within your Maps folder as well to make things a bit more organized: scan_path(maps_path ..'/Syria') scan_path(maps_path ..'/Persian Gulf') scan_path(maps_path ..'/Sinai') Make sure you create a folder named 'Maps' in your DCS saved games folder and create any subfolders to avoid any 'directory not found' errors that might make your in-game kneeboard stop working or load incorrectly. init.lua 1
speed-of-heat Posted July 6, 2023 Posted July 6, 2023 3 hours ago, AlaskanGrizzly said: You will need to modify the 'init.lua' file located at: ...\Program Files\DCS World (or DCS World OpenBeta\Scripts\Aircrafts\_Common\Cockpit\KNEEBOARD\indicator Add the following code after scan_path(user_path) around line #92. --Adds an additional kneeboard location for 'Maps' at the directory: ...Saved Games\DCS(or DCS.openbeta)\Maps local maps_path = lfs.writedir().."Maps" --Scans our custom made maps directory path and adds its images to the in-game kneeboard scan_path(maps_path) I've attached an init file with the above lines already added; just replace your original with this one. Be aware that any update or repair of DCS will reset the init file, so keep a copy of your modified file for quick replacement. You can add additional 'scan_path' lines to have it scan subfolders within your Maps folder as well to make things a bit more organized: scan_path(maps_path ..'/Syria') scan_path(maps_path ..'/Persian Gulf') scan_path(maps_path ..'/Sinai') Make sure you create a folder named 'Maps' in your DCS saved games folder and create any subfolders to avoid any 'directory not found' errors that might make your in-game kneeboard stop working or load incorrectly. init.lua 4.46 kB · 1 download thats great, but now we are just robbing "peter to pay paul", we still have to update the DCS game directory, though it's neat it can be done that way. @BIGNEWY can we add this as a feature request to have the maps path added as above so we dont keep loading things into the DCS games directory ? 1 SYSTEM SPECS: Hardware AMD 9800X3D, 64Gb RAM, 4090 FE, Virpil T50CM3 Throttle, WinWIng Orion 2 & F-16EX + MFG Crosswinds V2, Varjo Aero SOFTWARE: Microsoft Windows 11, VoiceAttack & VAICOM PRO YOUTUBE CHANNEL: @speed-of-heat
ED Team BIGNEWY Posted July 6, 2023 ED Team Posted July 6, 2023 Hi all, it has been requested some time ago, I have asked the team to consider it again, but can make no promises. I have moved this thread to wish list and linked it to the report. thanks 3 Forum rules - DCS Crashing? Try this first - Cleanup and Repair - Discord BIGNEWY#8703 - Youtube - Patch Status Windows 11, NVIDIA MSI RTX 3090, Intel® i9-10900K 3.70GHz, 5.30GHz Turbo, Corsair Hydro Series H150i Pro, 64GB DDR @3200, ASUS ROG Strix Z490-F Gaming, PIMAX Crystal
Sheepy Posted July 18, 2023 Author Posted July 18, 2023 On 7/6/2023 at 12:07 PM, BIGNEWY said: Hi all, it has been requested some time ago, I have asked the team to consider it again, but can make no promises. I have moved this thread to wish list and linked it to the report. thanks Thank you 1 i7-9700K || GTX 1080 Ti || 32Gig 3200 RAM || 1TB NVME & 1TB SSD || X56, Track IR, CH Pro Rudder Pedals
Mr_sukebe Posted January 19 Posted January 19 I don’t see an issue with saving them into the DCS main installation. I’ve had mine in there for a couple of years (at least) and they’ve never been deleted by an update or similar. IIRC, the path is: DCS World OpenBeta/Mods/Terrains/“map name” (eg Kola) 7800x3d, 5080, 64GB, PCIE5 SSD - Oculus Pro - Moza (AB9), Virpil (Alpha, CM3, CM1 and CM2), WW (TOP and CP), TM (MFDs, Pendular Rudder), Tek Creations (F18 panel), Total Controls (Apache MFD), Jetseat
MAXsenna Posted January 19 Posted January 19 I don’t see an issue with saving them into the DCS main installation. I’ve had mine in there for a couple of years (at least) and they’ve never been deleted by an update or similar. IIRC, the path is: DCS World OpenBeta/Mods/Terrains/“map name” (eg Kola)They will if you need to do a full slow repair. The best option is obviously to have them in Saved Games. Sent from my SM-A536B using Tapatalk
twistking Posted January 19 Posted January 19 I want to suggest to include a kneeboard manager with the in-development DTC mission planning tool. Users could dumb all their kneeboard files in the user files and they would all show up in the kneeboard portion of the mission planner. Users could then decide which pages to include for the upcoming mission. This way you'd only have those pages that are needed for the current mission. 1 My improved* wishlist after a decade with DCS *now with 17% more wishes compared to the original
MAXsenna Posted January 19 Posted January 19 I want to suggest to include a kneeboard manager with the in-development DTC mission planning tool. Users could dumb all their kneeboard files in the user files and they would all show up in the kneeboard portion of the mission planner. Users could then decide which pages to include for the upcoming mission. This way you'd only have those pages that are needed for the current mission.Great idea! Now, if it could have the option to remove stock unnecessary kneebords too! Sent from my SM-A536B using Tapatalk 1
twistking Posted January 20 Posted January 20 10 hours ago, MAXsenna said: Great idea! Now, if it could have the option to remove stock unnecessary kneebords too! Yes. Having tons of unwanted pages (every damn Caucasus aerodrome chart) is a bit of a pet peeve of mine. Would also be solved with a proposed kneeboard manager: Browse through, sort and manage (favorites, simple search) custom AND stock pages. Also create new pages on the fly that get auto-populated with data from the mission (frequencies, coordinates, briefing info etc.)... 1 1 My improved* wishlist after a decade with DCS *now with 17% more wishes compared to the original
Recommended Posts