Guest User

Untitled

a guest
Oct 11th, 2014
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 KB | None | 0 0
  1. # Copyright (c) 2014 The Paradox Game Converters Project
  2. #
  3. # Permission is hereby granted, free of charge, to any person obtaining a copy
  4. # of this software and associated documentation files (the "Software"), to deal
  5. # in the Software without restriction, including without limitation the rights
  6. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. # copies of the Software, and to permit persons to whom the Software is
  8. # furnished to do so, subject to the following conditions:
  9. #
  10. # The above copyright notice and this permission notice shall be included in
  11. # all copies or substantial portions of the Software.
  12. #
  13. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  19. # THE SOFTWARE.
  20.  
  21.  
  22. configuration =
  23. {
  24. # Europa Universalis 4 directory: a path on your computer where Europa Universalis 4 is installed
  25. EU4directory ="C:\Program Files (x86)\Paradox Interactive\Europa Universalis IV Wealth of Nations"
  26. # Europa Universalis 4 documents directory: a path on your computer where Europa Universalis 4 keeps temporary files
  27. EU4DocumentsDirectory ="C:\Users\Darth Nick\Documents\Paradox Interactive\Europa Universalis IV"
  28. # Crusader Kings 2 export directory: a path on your computer where Crusader Kings 2 keeps exported games
  29. CK2ExportDirectory ="C:\Users\Darth Nick\Documents\Paradox Interactive\Crusader Kings II\eu4_export\mod"
  30.  
  31. # Victoria 2 directory: a path on your computer where Victoria 2 is installed
  32. V2directory ="D:\Games\Victoria 2 - Heart of Darkness"
  33.  
  34. # Victoria 2 Documents directory: a path on your computer where Victoria 2 keeps temporary files
  35. V2Documentsdirectory ="C:\Users\Darth Nick\Documents\Paradox Interactive\Victoria II"
  36.  
  37. # CK2Converted: Whether or not the mod was converted from CK2. Possible values:
  38. # yes
  39. # no
  40. CK2Converted = "yes"
  41.  
  42. # V2 Game Type: what version of V2 to convert to. Possible values:
  43. # vanilla vanilla V2 (1.x)
  44. # AHD A House Divided (2.x)
  45. # HOD Heart of Darkness (3.x)
  46. V2gametype = "HOD"
  47.  
  48. # The date on which the game is to start. Default: 1835.12.1
  49. # WARNING: start_date at or prior to 1835.1.1 will, in all likelyhood, crash Victoria!
  50. start_date = 1836.1.1
  51.  
  52. # Reset Provinces: Whether or not to reset resettable V2 provinces
  53. resetProvinces = "no"
  54.  
  55. # The maximum literacy a nation will start with. Default 100%
  56. max_literacy = 30.0%
  57.  
  58. # Remove type: Which landless nations to remove. Possible values:
  59. # none remove none of them
  60. # dead remove ones without cultural backing
  61. # all remove all of them
  62. # Note: if there are not enough V2 tags, some or all of these will be done anyway
  63. Removetype = "dead"
  64. }
Advertisement
Add Comment
Please, Sign In to add comment