Advertisement
Murdabenne

netkan help

Jun 7th, 2015
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. GameData/
  2. -------->KashCorp/
  3. Both apps use
  4. -------->------->/Agencies
  5. -------->------->/Flags
  6. -------->------->/Resources
  7. then each app uses
  8. KAP
  9. -------->------->/KAP
  10. Rovers_and_Roadsters
  11. -------->------->/RoversAndRoadsters
  12.  
  13. My install for my .netkan files look like this...
  14.  
  15. KashCorpSA.netkan - shared assets
  16. {
  17. "spec_version" : "v1.4",
  18. "identifier" : "KashcorpSA",
  19. "name" : "Kash Corp Shared Assets (Virtual mod)",
  20. "abstract" : "Shared assets for KashCorp mods, based off KAP",
  21. "comment" : "KashCorp Shared Assets based off KAP zip file",
  22. "license" : "BSD-3-clause",
  23. "version" : "virtual-1.0",
  24. "$kref" : "#/ckan/kerbalstuff/96",
  25. "depends" : [
  26. { "name" : "ModuleManager" },
  27. ],
  28. "install" : [
  29. {
  30. "find" : "KashCorp",
  31. "install_to" : "GameData",
  32. "filter" : "KAP"
  33. }
  34. ]
  35. }
  36.  
  37. KAP.netkan - KAP only
  38. {
  39. "spec_version" : "v1.4",
  40. "identifier" : "KAP",
  41. "license" : "BSD-3-clause",
  42. "comment" : "Common assets in KashCorpSA virtual mod, based off KAP zip",
  43. "$kref" : "#/ckan/kerbalstuff/96",
  44. "depends" : [
  45. { "name" : "ModuleManager" },
  46. { "name" : "KashCorpSA" }
  47. ],
  48. "install" : [
  49. {
  50. "find" : "KAP",
  51. "install_to" : "GameData/KashCorp"
  52. }
  53. ]
  54. }
  55.  
  56. RoversAndRoadsters.netkan - Rovers... only
  57. {
  58. "spec_version" : "v1.4",
  59. "identifier" : "RoversAndRoadsters",
  60. "license" : "BSD-3-clause",
  61. "comment" : "Common assets in KashCorpSA virtual mod, based off KAP zip",
  62. "$kref" : "#/ckan/kerbalstuff/94",
  63. "depends" : [
  64. { "name" : "ModuleManager" },
  65. { "name" : "KashCorpSA" }
  66. ],
  67. "install" : [
  68. {
  69. "find" : "RoversAndRoadsters",
  70. "install_to" : "GameData/KashCorp"
  71. }
  72. ]
  73. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement