Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.86 KB | None | 0 0
  1. WARNING: Do NOT copy over the init.txt from an earlier version of DF.
  2. Always read the file carefully, including the comments.
  3.  
  4. In general, you can copy savegames and tilesets from older DF
  5. versions, but you should not copy anything else. You should not, under any
  6. circumstances, unpack a new DF on top of an older one.
  7.  
  8.  
  9. Change this to turn sound off.
  10.  
  11. [SOUND:ON]
  12.  
  13. The sound volume runs from 0 (off) to 255 (full). You can set the volume from the ESC options menu as well.
  14.  
  15. [VOLUME:100]
  16.  
  17. Change this to skip the wonderful intro movies.
  18.  
  19. [INTRO:OFF]
  20.  
  21. This lets you set the starting windowed/fullscreen setting. Can be YES, NO or PROMPT.
  22.  
  23. [WINDOWED:YES]
  24.  
  25. This is the size and font for windowed mode. Changing to 800x600 and the 800x600 font might make you happier.
  26.  
  27. [WINDOWEDX:1600]
  28. [WINDOWEDY:750]
  29. [FONT:Curses_square_24DragonDePlatino.png]
  30.  
  31. Full screen info.
  32.  
  33. [FULLSCREENX:1920]
  34. [FULLSCREENY:1080]
  35. [FULLFONT:Curses_square_24DragonDePlatino.png]
  36.  
  37. If this is set to YES, the tiles will not be stretched, but rather the game view will be centralized, surrounded by black space. Tiles that are too large will always be compressed rather than running off the screen.
  38.  
  39. [BLACK_SPACE:NO]
  40.  
  41. Graphics info, most of it as above. Set GRAPHICS to YES to turn it all on. This will use the "raw/graphics" folder for tile information. Currently this is limited to whatever creature graphics you have downloaded. The game comes with a few pictures to demonstrate. As of July 2018, the Dwarf Fortress Wiki has custom tilesets available at http://dwarffortresswiki.org/index.php/Tileset_repository and creature graphics at http://dwarffortresswiki.org/index.php/Graphics_set_repository.
  42.  
  43. The legacy version only supports 24 bit BMP files, so any PNGs will have to be converted first.
  44.  
  45. [GRAPHICS:NO]
  46. [GRAPHICS_WINDOWEDX:1280]
  47. [GRAPHICS_WINDOWEDY:400]
  48. [GRAPHICS_FONT:Curses_square_24DragonDePlatino.png]
  49. [GRAPHICS_FULLSCREENX:1920]
  50. [GRAPHICS_FULLSCREENY:1080]
  51. [GRAPHICS_FULLFONT:Curses_square_24DragonDePlatino.png]
  52. [GRAPHICS_BLACK_SPACE:YES]
  53.  
  54. This is the dimensions in tiles of the display grid. Minimum x is 80. Minimum y is 25. Maximums are 200. Make sure the window size or full screen resolution matches the grid/tile size if you don't want the display to be squashed or stretched. The default windowed font has tiles that are 8x12 pixels, for instance, so for a 80x25 grid, you use a 640x300 window, and for a 125x50 grid, you'd use a 1000x600 window. FULLGRID is used in full screen mode, whether graphics is on or not.
  55.  
  56. [GRID:80:25]
  57. [FULLGRID:80:25]
  58.  
  59. Change this to YES to only refresh portions of the screen that need to be refreshed. This can have a significant impact on frame rate, especially for people that have slow frame rates on the title screen. The number refers to how many frames it will redo a printed tile before skipping it, so you might try increasing it a bit. PARTIAL_PRINT only works on certain systems, so you might have to disable it again if you notice your display isn't working properly. Fixes are being investigated.
  60.  
  61. [PARTIAL_PRINT:NO:2]
  62.  
  63. Change this to YES to keep the DF window on top of your other windows.
  64.  
  65. [TOPMOST:NO]
  66.  
  67. Change this to YES if you want to see an FPS counter at the top left.
  68.  
  69. [FPS:NO]
  70.  
  71. Use this to set the maximum frame rate during play. The movies are always capped at 100. A frame in this case is not graphical but related to the movement speed of a creature. A healthy, unencumbered dwarven peasant takes one step every 10 frames.
  72.  
  73. [FPS_CAP:100]
  74.  
  75. Use this to set the maximum graphical frame refresh rate during play.
  76.  
  77. [G_FPS_CAP:50]
  78.  
  79. This sets the applications vertical synchronization behavior. Changing this to ON can impact your FPS if your G_FPS is high. The other options are ON and DEFAULT. DEFAULT uses whatever settings you have your system at in general.
  80.  
  81. [VSYNC:OFF]
  82.  
  83. Change this to LINEAR if you want the texture values to be averaged over the adjacent pixels.
  84.  
  85. [TEXTURE_PARAM:NEAREST]
  86.  
  87. Change this to make the dwarfort.exe process have a different priority. From highest to lowest, the options are REALTIME, HIGH, ABOVE_NORMAL, NORMAL, BELOW_NORMAL and IDLE.
  88.  
  89. [PRIORITY:NORMAL]
  90.  
  91. Change this to NO if you don't want to have the mouse involved at all.
  92.  
  93. [MOUSE:YES]
  94.  
  95. Change this to YES if you'd like to use a BMP for the mouse cursor. The image currently lags when the game is lagging however.
  96.  
  97. [MOUSE_PICTURE:NO]
  98.  
  99. This controls the number of milliseconds that must pass before a held key sends a repeat press to the game. You might need to adjust this.
  100.  
  101. [KEY_HOLD_MS:150]
  102.  
  103. This controls the number of milliseconds that must pass before input works again after the view recenters on an event in dwarf mode.
  104.  
  105. [RECENTER_INTERFACE_SHUTDOWN_MS:0]
  106.  
  107. Change this to NO if you want to leave save uncompressed (you might want to do this if you are experience save corruption).
  108.  
  109. [COMPRESSED_SAVES:YES]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement