- v50 information can now be added to pages in the main namespace. v0.47 information can still be found in the DF2014 namespace. See here for more details on the new versioning policy.
- Use this page to report any issues related to the migration.
Difference between revisions of "Masterwork:Linux"
Line 1: | Line 1: | ||
This is a starter page for Linux users of the Masterwork mod. | This is a starter page for Linux users of the Masterwork mod. | ||
+ | === Prework === | ||
The bundled stonesense has old libjpg and libpng. Create a softlink from Dwarf Fortress/stonesense/deplibs/libjpeg.so.62 to your system libjpg in /usr/lib. You'll have to find a binary libpng12.so.0 on the 'net and put it in the same deplibs directory. You may also have to adjust the library load path in the "dfhack" script: | The bundled stonesense has old libjpg and libpng. Create a softlink from Dwarf Fortress/stonesense/deplibs/libjpeg.so.62 to your system libjpg in /usr/lib. You'll have to find a binary libpng12.so.0 on the 'net and put it in the same deplibs directory. You may also have to adjust the library load path in the "dfhack" script: | ||
<pre> | <pre> | ||
Line 8: | Line 9: | ||
YMMV. | YMMV. | ||
+ | === Make It Go === | ||
Example: start soundSense and Dwarf Therapist first: | Example: start soundSense and Dwarf Therapist first: | ||
<pre> | <pre> | ||
Line 16: | Line 18: | ||
./dfhack | ./dfhack | ||
</pre> | </pre> | ||
+ | |||
+ | === Easier Farming === | ||
+ | You must edit the raws to adjust farming. This means a region must already exist to edit. It's easiest to create a world to your liking, and edit before starting to play. You can edit these in another window when DF returns to the main menu, before you Start Playing. | ||
+ | |||
+ | From the Dwarf Fortress directory, edit data/save/regionX/raw/objects/plant_standard.txt (where "regionX" is the region you wish to edit) and search for "GROWDUR". Change the number after each one to something less than 1000. | ||
+ | s/GROWDUR:\d+/GROWDUR:900/g |
Revision as of 01:42, 19 April 2013
This is a starter page for Linux users of the Masterwork mod.
Prework
The bundled stonesense has old libjpg and libpng. Create a softlink from Dwarf Fortress/stonesense/deplibs/libjpeg.so.62 to your system libjpg in /usr/lib. You'll have to find a binary libpng12.so.0 on the 'net and put it in the same deplibs directory. You may also have to adjust the library load path in the "dfhack" script:
#export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"./stonesense/deplibs":"./hack" export LD_LIBRARY_PATH="./stonesense/deplibs":"./hack:"$LD_LIBRARY_PATH
YMMV.
Make It Go
Example: start soundSense and Dwarf Therapist first:
#!/bin/bash ( cd ../MasterworkDwarfFortress/Utilities/soundSense ; ./soundSense.sh ../../../Dwarf\ Fortress/gamelog.txt ) & ( cd ../MasterworkDwarfFortress/Utilities/DwarfTherapist ; ./DwarfTherapist ) & ./dfhack
Easier Farming
You must edit the raws to adjust farming. This means a region must already exist to edit. It's easiest to create a world to your liking, and edit before starting to play. You can edit these in another window when DF returns to the main menu, before you Start Playing.
From the Dwarf Fortress directory, edit data/save/regionX/raw/objects/plant_standard.txt (where "regionX" is the region you wish to edit) and search for "GROWDUR". Change the number after each one to something less than 1000. s/GROWDUR:\d+/GROWDUR:900/g