forked from DFHack/dfhack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Readme.html
3325 lines (3246 loc) · 161 KB
/
Readme.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils 0.10: http://docutils.sourceforge.net/" />
<title>DFHack Readme</title>
<style type="text/css">
/*
:Author: David Goodger ([email protected])
:Id: $Id: html4css1.css 7514 2012-09-14 14:27:12Z milde $
:Copyright: This stylesheet has been placed in the public domain.
Default cascading style sheet for the HTML output of Docutils.
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
customize this style sheet.
*/
/* used to remove borders from tables and images */
.borderless, table.borderless td, table.borderless th {
border: 0 }
table.borderless td, table.borderless th {
/* Override padding for "table.docutils td" with "! important".
The right padding separates the table cells. */
padding: 0 0.5em 0 0 ! important }
.first {
/* Override more specific margin styles with "! important". */
margin-top: 0 ! important }
.last, .with-subtitle {
margin-bottom: 0 ! important }
.hidden {
display: none }
a.toc-backref {
text-decoration: none ;
color: black }
blockquote.epigraph {
margin: 2em 5em ; }
dl.docutils dd {
margin-bottom: 0.5em }
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
overflow: hidden;
}
/* Uncomment (and remove this text!) to get bold-faced definition list terms
dl.docutils dt {
font-weight: bold }
*/
div.abstract {
margin: 2em 5em }
div.abstract p.topic-title {
font-weight: bold ;
text-align: center }
div.admonition, div.attention, div.caution, div.danger, div.error,
div.hint, div.important, div.note, div.tip, div.warning {
margin: 2em ;
border: medium outset ;
padding: 1em }
div.admonition p.admonition-title, div.hint p.admonition-title,
div.important p.admonition-title, div.note p.admonition-title,
div.tip p.admonition-title {
font-weight: bold ;
font-family: sans-serif }
div.attention p.admonition-title, div.caution p.admonition-title,
div.danger p.admonition-title, div.error p.admonition-title,
div.warning p.admonition-title, .code .error {
color: red ;
font-weight: bold ;
font-family: sans-serif }
/* Uncomment (and remove this text!) to get reduced vertical space in
compound paragraphs.
div.compound .compound-first, div.compound .compound-middle {
margin-bottom: 0.5em }
div.compound .compound-last, div.compound .compound-middle {
margin-top: 0.5em }
*/
div.dedication {
margin: 2em 5em ;
text-align: center ;
font-style: italic }
div.dedication p.topic-title {
font-weight: bold ;
font-style: normal }
div.figure {
margin-left: 2em ;
margin-right: 2em }
div.footer, div.header {
clear: both;
font-size: smaller }
div.line-block {
display: block ;
margin-top: 1em ;
margin-bottom: 1em }
div.line-block div.line-block {
margin-top: 0 ;
margin-bottom: 0 ;
margin-left: 1.5em }
div.sidebar {
margin: 0 0 0.5em 1em ;
border: medium outset ;
padding: 1em ;
background-color: #ffffee ;
width: 40% ;
float: right ;
clear: right }
div.sidebar p.rubric {
font-family: sans-serif ;
font-size: medium }
div.system-messages {
margin: 5em }
div.system-messages h1 {
color: red }
div.system-message {
border: medium outset ;
padding: 1em }
div.system-message p.system-message-title {
color: red ;
font-weight: bold }
div.topic {
margin: 2em }
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
margin-top: 0.4em }
h1.title {
text-align: center }
h2.subtitle {
text-align: center }
hr.docutils {
width: 75% }
img.align-left, .figure.align-left, object.align-left {
clear: left ;
float: left ;
margin-right: 1em }
img.align-right, .figure.align-right, object.align-right {
clear: right ;
float: right ;
margin-left: 1em }
img.align-center, .figure.align-center, object.align-center {
display: block;
margin-left: auto;
margin-right: auto;
}
.align-left {
text-align: left }
.align-center {
clear: both ;
text-align: center }
.align-right {
text-align: right }
/* reset inner alignment in figures */
div.align-right {
text-align: inherit }
/* div.align-center * { */
/* text-align: left } */
ol.simple, ul.simple {
margin-bottom: 1em }
ol.arabic {
list-style: decimal }
ol.loweralpha {
list-style: lower-alpha }
ol.upperalpha {
list-style: upper-alpha }
ol.lowerroman {
list-style: lower-roman }
ol.upperroman {
list-style: upper-roman }
p.attribution {
text-align: right ;
margin-left: 50% }
p.caption {
font-style: italic }
p.credits {
font-style: italic ;
font-size: smaller }
p.label {
white-space: nowrap }
p.rubric {
font-weight: bold ;
font-size: larger ;
color: maroon ;
text-align: center }
p.sidebar-title {
font-family: sans-serif ;
font-weight: bold ;
font-size: larger }
p.sidebar-subtitle {
font-family: sans-serif ;
font-weight: bold }
p.topic-title {
font-weight: bold }
pre.address {
margin-bottom: 0 ;
margin-top: 0 ;
font: inherit }
pre.literal-block, pre.doctest-block, pre.math, pre.code {
margin-left: 2em ;
margin-right: 2em }
pre.code .ln { color: grey; } /* line numbers */
pre.code, code { background-color: #eeeeee }
pre.code .comment, code .comment { color: #5C6576 }
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
pre.code .literal.string, code .literal.string { color: #0C5404 }
pre.code .name.builtin, code .name.builtin { color: #352B84 }
pre.code .deleted, code .deleted { background-color: #DEB0A1}
pre.code .inserted, code .inserted { background-color: #A3D289}
span.classifier {
font-family: sans-serif ;
font-style: oblique }
span.classifier-delimiter {
font-family: sans-serif ;
font-weight: bold }
span.interpreted {
font-family: sans-serif }
span.option {
white-space: nowrap }
span.pre {
white-space: pre }
span.problematic {
color: red }
span.section-subtitle {
/* font-size relative to parent (h1..h6 element) */
font-size: 80% }
table.citation {
border-left: solid 1px gray;
margin-left: 1px }
table.docinfo {
margin: 2em 4em }
table.docutils {
margin-top: 0.5em ;
margin-bottom: 0.5em }
table.footnote {
border-left: solid 1px black;
margin-left: 1px }
table.docutils td, table.docutils th,
table.docinfo td, table.docinfo th {
padding-left: 0.5em ;
padding-right: 0.5em ;
vertical-align: top }
table.docutils th.field-name, table.docinfo th.docinfo-name {
font-weight: bold ;
text-align: left ;
white-space: nowrap ;
padding-left: 0 }
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
font-size: 100% }
ul.auto-toc {
list-style-type: none }
</style>
</head>
<body>
<div class="document" id="dfhack-readme">
<h1 class="title">DFHack Readme</h1>
<div class="section" id="introduction">
<h1><a class="toc-backref" href="#id2">Introduction</a></h1>
<p>DFHack is a Dwarf Fortress memory access library and a set of basic
tools that use it. Tools come in the form of plugins or (not yet)
external tools. It is an attempt to unite the various ways tools
access DF memory and allow for easier development of new tools.</p>
<div class="contents topic" id="contents">
<p class="topic-title first">Contents</p>
<ul class="simple">
<li><a class="reference internal" href="#introduction" id="id2">Introduction</a></li>
<li><a class="reference internal" href="#getting-dfhack" id="id3">Getting DFHack</a></li>
<li><a class="reference internal" href="#compatibility" id="id4">Compatibility</a></li>
<li><a class="reference internal" href="#installation-removal" id="id5">Installation/Removal</a><ul>
<li><a class="reference internal" href="#getting-started" id="id6">Getting started</a></li>
</ul>
</li>
<li><a class="reference internal" href="#using-dfhack" id="id7">Using DFHack</a><ul>
<li><a class="reference internal" href="#patched-binaries" id="id8">Patched binaries</a><ul>
<li><a class="reference internal" href="#live-patching" id="id9">Live patching</a></li>
</ul>
</li>
</ul>
</li>
<li><a class="reference internal" href="#something-doesn-t-work-help" id="id10">Something doesn't work, help!</a></li>
<li><a class="reference internal" href="#the-init-file" id="id11">The init file</a><ul>
<li><a class="reference internal" href="#setting-keybindings" id="id12">Setting keybindings</a></li>
</ul>
</li>
<li><a class="reference internal" href="#commands" id="id13">Commands</a><ul>
<li><a class="reference internal" href="#game-progress" id="id14">Game progress</a><ul>
<li><a class="reference internal" href="#die" id="id15">die</a></li>
<li><a class="reference internal" href="#forcepause" id="id16">forcepause</a></li>
<li><a class="reference internal" href="#nopause" id="id17">nopause</a></li>
<li><a class="reference internal" href="#fastdwarf" id="id18">fastdwarf</a></li>
</ul>
</li>
<li><a class="reference internal" href="#game-interface" id="id19">Game interface</a><ul>
<li><a class="reference internal" href="#follow" id="id20">follow</a></li>
<li><a class="reference internal" href="#tidlers" id="id21">tidlers</a></li>
<li><a class="reference internal" href="#twaterlvl" id="id22">twaterlvl</a></li>
<li><a class="reference internal" href="#copystock" id="id23">copystock</a></li>
<li><a class="reference internal" href="#rename" id="id24">rename</a></li>
</ul>
</li>
<li><a class="reference internal" href="#adventure-mode" id="id25">Adventure mode</a><ul>
<li><a class="reference internal" href="#adv-bodyswap" id="id26">adv-bodyswap</a></li>
<li><a class="reference internal" href="#advtools" id="id27">advtools</a></li>
</ul>
</li>
<li><a class="reference internal" href="#map-modification" id="id28">Map modification</a><ul>
<li><a class="reference internal" href="#changelayer" id="id29">changelayer</a></li>
<li><a class="reference internal" href="#changevein" id="id30">changevein</a></li>
<li><a class="reference internal" href="#changeitem" id="id31">changeitem</a></li>
<li><a class="reference internal" href="#colonies" id="id32">colonies</a></li>
<li><a class="reference internal" href="#deramp-by-zilpin" id="id33">deramp (by zilpin)</a></li>
<li><a class="reference internal" href="#feature" id="id34">feature</a></li>
<li><a class="reference internal" href="#liquids" id="id35">liquids</a></li>
<li><a class="reference internal" href="#liquids-here" id="id36">liquids-here</a></li>
<li><a class="reference internal" href="#tiletypes" id="id37">tiletypes</a></li>
<li><a class="reference internal" href="#tiletypes-commands" id="id38">tiletypes-commands</a></li>
<li><a class="reference internal" href="#tiletypes-here" id="id39">tiletypes-here</a></li>
<li><a class="reference internal" href="#tiletypes-here-point" id="id40">tiletypes-here-point</a></li>
<li><a class="reference internal" href="#tubefill" id="id41">tubefill</a></li>
<li><a class="reference internal" href="#extirpate" id="id42">extirpate</a></li>
<li><a class="reference internal" href="#grow" id="id43">grow</a></li>
<li><a class="reference internal" href="#immolate" id="id44">immolate</a></li>
<li><a class="reference internal" href="#regrass" id="id45">regrass</a></li>
<li><a class="reference internal" href="#weather" id="id46">weather</a></li>
</ul>
</li>
<li><a class="reference internal" href="#map-inspection" id="id47">Map inspection</a><ul>
<li><a class="reference internal" href="#cursecheck" id="id48">cursecheck</a></li>
<li><a class="reference internal" href="#flows" id="id49">flows</a></li>
<li><a class="reference internal" href="#probe" id="id50">probe</a></li>
<li><a class="reference internal" href="#prospect" id="id51">prospect</a><ul>
<li><a class="reference internal" href="#pre-embark-estimate" id="id52">Pre-embark estimate</a></li>
</ul>
</li>
<li><a class="reference internal" href="#reveal" id="id53">reveal</a></li>
<li><a class="reference internal" href="#unreveal" id="id54">unreveal</a></li>
<li><a class="reference internal" href="#revtoggle" id="id55">revtoggle</a></li>
<li><a class="reference internal" href="#revflood" id="id56">revflood</a></li>
<li><a class="reference internal" href="#revforget" id="id57">revforget</a></li>
<li><a class="reference internal" href="#showmood" id="id58">showmood</a></li>
</ul>
</li>
<li><a class="reference internal" href="#designations" id="id59">Designations</a><ul>
<li><a class="reference internal" href="#burrow" id="id60">burrow</a></li>
<li><a class="reference internal" href="#digv" id="id61">digv</a></li>
<li><a class="reference internal" href="#digvx" id="id62">digvx</a></li>
<li><a class="reference internal" href="#digl" id="id63">digl</a></li>
<li><a class="reference internal" href="#diglx" id="id64">diglx</a></li>
<li><a class="reference internal" href="#digexp" id="id65">digexp</a></li>
<li><a class="reference internal" href="#digcircle" id="id66">digcircle</a></li>
<li><a class="reference internal" href="#digtype" id="id67">digtype</a></li>
<li><a class="reference internal" href="#filltraffic" id="id68">filltraffic</a></li>
<li><a class="reference internal" href="#alltraffic" id="id69">alltraffic</a></li>
<li><a class="reference internal" href="#getplants" id="id70">getplants</a></li>
</ul>
</li>
<li><a class="reference internal" href="#cleanup-and-garbage-disposal" id="id71">Cleanup and garbage disposal</a><ul>
<li><a class="reference internal" href="#clean" id="id72">clean</a></li>
<li><a class="reference internal" href="#spotclean" id="id73">spotclean</a></li>
<li><a class="reference internal" href="#autodump" id="id74">autodump</a></li>
<li><a class="reference internal" href="#autodump-destroy-here" id="id75">autodump-destroy-here</a></li>
<li><a class="reference internal" href="#autodump-destroy-item" id="id76">autodump-destroy-item</a></li>
<li><a class="reference internal" href="#cleanowned" id="id77">cleanowned</a></li>
</ul>
</li>
<li><a class="reference internal" href="#bugfixes" id="id78">Bugfixes</a><ul>
<li><a class="reference internal" href="#drybuckets" id="id79">drybuckets</a></li>
<li><a class="reference internal" href="#fixdiplomats" id="id80">fixdiplomats</a></li>
<li><a class="reference internal" href="#fixmerchants" id="id81">fixmerchants</a></li>
<li><a class="reference internal" href="#fixveins" id="id82">fixveins</a></li>
<li><a class="reference internal" href="#tweak" id="id83">tweak</a></li>
<li><a class="reference internal" href="#fix-armory" id="id84">fix-armory</a></li>
</ul>
</li>
<li><a class="reference internal" href="#mode-switch-and-reclaim" id="id85">Mode switch and reclaim</a><ul>
<li><a class="reference internal" href="#lair" id="id86">lair</a></li>
<li><a class="reference internal" href="#mode" id="id87">mode</a></li>
</ul>
</li>
<li><a class="reference internal" href="#visualizer-and-data-export" id="id88">Visualizer and data export</a><ul>
<li><a class="reference internal" href="#ssense-stonesense" id="id89">ssense / stonesense</a></li>
<li><a class="reference internal" href="#mapexport" id="id90">mapexport</a></li>
<li><a class="reference internal" href="#dwarfexport" id="id91">dwarfexport</a></li>
</ul>
</li>
<li><a class="reference internal" href="#job-management" id="id92">Job management</a><ul>
<li><a class="reference internal" href="#job" id="id93">job</a></li>
<li><a class="reference internal" href="#job-material" id="id94">job-material</a></li>
<li><a class="reference internal" href="#job-duplicate" id="id95">job-duplicate</a></li>
<li><a class="reference internal" href="#workflow" id="id96">workflow</a><ul>
<li><a class="reference internal" href="#function" id="id97">Function</a></li>
<li><a class="reference internal" href="#constraint-format" id="id98">Constraint format</a></li>
<li><a class="reference internal" href="#constraint-examples" id="id99">Constraint examples</a></li>
</ul>
</li>
</ul>
</li>
<li><a class="reference internal" href="#fortress-activity-management" id="id100">Fortress activity management</a><ul>
<li><a class="reference internal" href="#seedwatch" id="id101">seedwatch</a></li>
<li><a class="reference internal" href="#zone" id="id102">zone</a><ul>
<li><a class="reference internal" href="#usage-with-single-units" id="id103">Usage with single units</a></li>
<li><a class="reference internal" href="#usage-with-filters" id="id104">Usage with filters</a></li>
<li><a class="reference internal" href="#mass-renaming" id="id105">Mass-renaming</a></li>
<li><a class="reference internal" href="#cage-zones" id="id106">Cage zones</a></li>
<li><a class="reference internal" href="#examples" id="id107">Examples</a></li>
</ul>
</li>
<li><a class="reference internal" href="#autonestbox" id="id108">autonestbox</a></li>
<li><a class="reference internal" href="#autobutcher" id="id109">autobutcher</a></li>
<li><a class="reference internal" href="#autolabor" id="id110">autolabor</a></li>
</ul>
</li>
<li><a class="reference internal" href="#other" id="id111">Other</a><ul>
<li><a class="reference internal" href="#catsplosion" id="id112">catsplosion</a></li>
<li><a class="reference internal" href="#dfusion" id="id113">dfusion</a></li>
<li><a class="reference internal" href="#misery" id="id114">misery</a></li>
</ul>
</li>
</ul>
</li>
<li><a class="reference internal" href="#scripts" id="id115">Scripts</a><ul>
<li><a class="reference internal" href="#fix" id="id116">fix/*</a></li>
<li><a class="reference internal" href="#gui" id="id117">gui/*</a></li>
<li><a class="reference internal" href="#binpatch" id="id118">binpatch</a></li>
<li><a class="reference internal" href="#quicksave" id="id119">quicksave</a></li>
<li><a class="reference internal" href="#setfps" id="id120">setfps</a></li>
<li><a class="reference internal" href="#siren" id="id121">siren</a></li>
<li><a class="reference internal" href="#growcrops" id="id122">growcrops</a></li>
<li><a class="reference internal" href="#removebadthoughts" id="id123">removebadthoughts</a></li>
<li><a class="reference internal" href="#slayrace" id="id124">slayrace</a></li>
<li><a class="reference internal" href="#magmasource" id="id125">magmasource</a></li>
<li><a class="reference internal" href="#digfort" id="id126">digfort</a></li>
<li><a class="reference internal" href="#superdwarf" id="id127">superdwarf</a></li>
<li><a class="reference internal" href="#drainaquifer" id="id128">drainaquifer</a></li>
<li><a class="reference internal" href="#deathcause" id="id129">deathcause</a></li>
<li><a class="reference internal" href="#lua" id="id130">lua</a></li>
<li><a class="reference internal" href="#embark" id="id131">embark</a></li>
<li><a class="reference internal" href="#lever" id="id132">lever</a></li>
<li><a class="reference internal" href="#stripcaged" id="id133">stripcaged</a></li>
<li><a class="reference internal" href="#create-items" id="id134">create-items</a></li>
</ul>
</li>
<li><a class="reference internal" href="#in-game-interface-tools" id="id135">In-game interface tools</a><ul>
<li><a class="reference internal" href="#dwarf-manipulator" id="id136">Dwarf Manipulator</a></li>
<li><a class="reference internal" href="#search" id="id137">Search</a></li>
<li><a class="reference internal" href="#automaterial" id="id138">AutoMaterial</a></li>
<li><a class="reference internal" href="#gui-liquids" id="id139">gui/liquids</a></li>
<li><a class="reference internal" href="#gui-mechanisms" id="id140">gui/mechanisms</a></li>
<li><a class="reference internal" href="#gui-rename" id="id141">gui/rename</a></li>
<li><a class="reference internal" href="#gui-room-list" id="id142">gui/room-list</a></li>
<li><a class="reference internal" href="#gui-choose-weapons" id="id143">gui/choose-weapons</a></li>
<li><a class="reference internal" href="#gui-guide-path" id="id144">gui/guide-path</a></li>
<li><a class="reference internal" href="#gui-workshop-job" id="id145">gui/workshop-job</a></li>
<li><a class="reference internal" href="#gui-workflow" id="id146">gui/workflow</a></li>
<li><a class="reference internal" href="#gui-assign-rack" id="id147">gui/assign-rack</a></li>
<li><a class="reference internal" href="#gui-advfort" id="id148">gui/advfort</a></li>
<li><a class="reference internal" href="#gui-gm-editor" id="id149">gui/gm-editor</a></li>
</ul>
</li>
<li><a class="reference internal" href="#behavior-mods" id="id150">Behavior Mods</a><ul>
<li><a class="reference internal" href="#siege-engine" id="id151">Siege Engine</a><ul>
<li><a class="reference internal" href="#rationale" id="id152">Rationale</a></li>
<li><a class="reference internal" href="#configuration-ui" id="id153">Configuration UI</a></li>
</ul>
</li>
<li><a class="reference internal" href="#power-meter" id="id154">Power Meter</a></li>
<li><a class="reference internal" href="#steam-engine" id="id155">Steam Engine</a><ul>
<li><a class="reference internal" href="#id1" id="id156">Rationale</a></li>
<li><a class="reference internal" href="#construction" id="id157">Construction</a></li>
<li><a class="reference internal" href="#operation" id="id158">Operation</a></li>
<li><a class="reference internal" href="#explosions" id="id159">Explosions</a></li>
<li><a class="reference internal" href="#save-files" id="id160">Save files</a></li>
</ul>
</li>
<li><a class="reference internal" href="#add-spatter" id="id161">Add Spatter</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="section" id="getting-dfhack">
<h1><a class="toc-backref" href="#id3">Getting DFHack</a></h1>
<p>The project is currently hosted on <a class="reference external" href="http://www.github.com/">github</a>, for both source and
binaries at <a class="reference external" href="http://github.com/peterix/dfhack">http://github.com/peterix/dfhack</a></p>
<p>Releases can be downloaded from here: <a class="reference external" href="https://github.com/peterix/dfhack/downloads">https://github.com/peterix/dfhack/downloads</a></p>
<p>All new releases are announced in the bay12 thread: <a class="reference external" href="http://tinyurl.com/dfhack-ng">http://tinyurl.com/dfhack-ng</a></p>
</div>
<div class="section" id="compatibility">
<h1><a class="toc-backref" href="#id4">Compatibility</a></h1>
<p>DFHack works on Windows XP, Vista, 7 or any modern Linux distribution.
OSX is not supported due to lack of developers with a Mac.</p>
<p>Currently, version 0.34.11 is supported (and tested). If you need DFHack
for older versions, look for older releases.</p>
<p>On Windows, you have to use the SDL version of DF.</p>
<p>It is possible to use the Windows DFHack under wine/OSX.</p>
</div>
<div class="section" id="installation-removal">
<h1><a class="toc-backref" href="#id5">Installation/Removal</a></h1>
<p>Installing DFhack involves copying files into your DF folder.
Copy the files from a release archive so that:</p>
<blockquote>
<ul class="simple">
<li>On Windows, SDL.dll is replaced</li>
<li>On Linux, the 'dfhack' script is placed in the same folder as the 'df' script</li>
</ul>
</blockquote>
<p>Uninstalling is basically the same, in reverse:</p>
<blockquote>
<ul class="simple">
<li>On Windows, first delete SDL.dll and rename SDLreal.dll to SDL.dll. Then
remove the other DFHack files</li>
<li>On Linux, Remove the DFHack files.</li>
</ul>
</blockquote>
<p>The stonesense plugin might require some additional libraries on Linux.</p>
<p>If any of the plugins or dfhack itself refuses to load, check the stderr.log
file created in your DF folder.</p>
<div class="section" id="getting-started">
<h2><a class="toc-backref" href="#id6">Getting started</a></h2>
<p>If DFHack is installed correctly, it will automatically pop up a console
window once DF is started as usual on windows. Linux and Mac OS X require
running the dfhack script from the terminal, and will use that terminal for
the console.</p>
<p><strong>NOTE</strong>: The dfhack-run executable is there for calling DFHack commands in
an already running DF+DFHack instance from external OS scripts and programs,
and is <em>not</em> the way how you use DFHack normally.</p>
<p>DFHack has a lot of features, which can be accessed by typing commands in the
console, or by mapping them to keyboard shortcuts. Most of the newer and more
user-friendly tools are designed to be at least partially used via the latter
way.</p>
<p>In order to set keybindings, you have to create a text configuration file
called <tt class="docutils literal">dfhack.init</tt>; the installation comes with an example version called
<tt class="docutils literal"><span class="pre">dfhack.init-example</span></tt>, which is fully functional, covers all of the recent
features and can be simply renamed to <tt class="docutils literal">dfhack.init</tt>. You are encouraged to look
through it to learn which features it makes available under which key combinations.</p>
<p>For more information, refer to the rest of this document.</p>
</div>
</div>
<div class="section" id="using-dfhack">
<h1><a class="toc-backref" href="#id7">Using DFHack</a></h1>
<p>DFHack basically extends what DF can do with something similar to the drop-down
console found in Quake engine games. On Windows, this is a separate command line
window. On linux, the terminal used to launch the dfhack script is taken over
(so, make sure you start from a terminal). Basic interaction with dfhack
involves entering commands into the console. For some basic instroduction,
use the 'help' command. To list all possible commands, use the 'ls' command.
Many commands have their own help or detailed description. You can use
'command help' or 'command ?' to show that.</p>
<p>The command line has some nice line editing capabilities, including history
that's preserved between different runs of DF (use up/down keys to go through
the history).</p>
<p>The second way to interact with DFHack is to bind the available commands
to in-game hotkeys. The old way to do this is via the hotkey/zoom menu (normally
opened with the 'h' key). Binding the commands is done by assigning a command as
a hotkey name (with 'n').</p>
<p>A new and more flexible way is the keybinding command in the dfhack console.
However, bindings created this way are not automatically remembered between runs
of the game, so it becomes necessary to use the dfhack.init file to ensure that
they are re-created every time it is loaded.</p>
<p>Interactive commands like 'liquids' cannot be used as hotkeys.</p>
<p>Most of the commands come from plugins. Those reside in 'hack/plugins/'.</p>
<div class="section" id="patched-binaries">
<h2><a class="toc-backref" href="#id8">Patched binaries</a></h2>
<p>On linux and OSX, users of patched binaries may have to find the relevant
section in symbols.xml, and add a new line with the checksum of their
executable:</p>
<pre class="literal-block">
<md5-hash value='????????????????????????????????'/>
</pre>
<p>In order to find the correct value of the hash, look into stderr.log;
DFHack prints an error there if it does not recognize the hash.</p>
<p>DFHack includes a small stand-alone utility for applying and removing
binary patches from the game executable. Use it from the regular operating
system console:</p>
<blockquote>
<ul>
<li><p class="first"><tt class="docutils literal">binpatch check "Dwarf Fortress.exe" patch.dif</tt></p>
<p>Checks and prints if the patch is currently applied.</p>
</li>
<li><p class="first"><tt class="docutils literal">binpatch apply "Dwarf Fortress.exe" patch.dif</tt></p>
<p>Applies the patch, unless it is already applied or in conflict.</p>
</li>
<li><p class="first"><tt class="docutils literal">binpatch remove "Dwarf Fortress.exe" patch.dif</tt></p>
<p>Removes the patch, unless it is already removed.</p>
</li>
</ul>
</blockquote>
<p>The patches are expected to be encoded in text format used by IDA.</p>
<div class="section" id="live-patching">
<h3><a class="toc-backref" href="#id9">Live patching</a></h3>
<p>As an alternative, you can use the <tt class="docutils literal">binpatch</tt> dfhack command to apply/remove
patches live in memory during a DF session.</p>
<p>In this case, updating symbols.xml is not necessary.</p>
</div>
</div>
</div>
<div class="section" id="something-doesn-t-work-help">
<h1><a class="toc-backref" href="#id10">Something doesn't work, help!</a></h1>
<p>First, don't panic :) Second, dfhack keeps a few log files in DF's folder
- stderr.log and stdout.log. You can look at those and possibly find out what's
happening.
If you found a bug, you can either report it in the bay12 DFHack thread,
the issues tracker on github, contact me (<a class="reference external" href="mailto:peterix@gmail.com">peterix@gmail.com</a>) or visit the
#dfhack IRC channel on freenode.</p>
</div>
<div class="section" id="the-init-file">
<h1><a class="toc-backref" href="#id11">The init file</a></h1>
<p>If your DF folder contains a file named <tt class="docutils literal">dfhack.init</tt>, its contents will be run
every time you start DF. This allows setting up keybindings. An example file
is provided as <tt class="docutils literal"><span class="pre">dfhack.init-example</span></tt> - you can tweak it and rename to dfhack.init
if you want to use this functionality.</p>
<div class="section" id="setting-keybindings">
<h2><a class="toc-backref" href="#id12">Setting keybindings</a></h2>
<p>To set keybindings, use the built-in <tt class="docutils literal">keybinding</tt> command. Like any other
command it can be used at any time from the console, but it is also meaningful
in the DFHack init file.</p>
<p>Currently it supports any combination of Ctrl/Alt/Shift with F1-F9, or A-Z.</p>
<p>Possible ways to call the command:</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field"><th class="field-name" colspan="2">keybinding list <key>:</th></tr>
<tr class="field"><td> </td><td class="field-body">List bindings active for the key combination.</td>
</tr>
<tr class="field"><th class="field-name" colspan="2">keybinding clear <key> <key>...:</th></tr>
<tr class="field"><td> </td><td class="field-body">Remove bindings for the specified keys.</td>
</tr>
<tr class="field"><th class="field-name" colspan="2">keybinding add <key> "cmdline" "cmdline"...:</th></tr>
<tr class="field"><td> </td><td class="field-body">Add bindings for the specified
key.</td>
</tr>
<tr class="field"><th class="field-name" colspan="2">keybinding set <key> "cmdline" "cmdline"...:</th></tr>
<tr class="field"><td> </td><td class="field-body">Clear, and then add bindings for
the specified key.</td>
</tr>
</tbody>
</table>
<p>The <em><key></em> parameter above has the following <em>case-sensitive</em> syntax:</p>
<pre class="literal-block">
[Ctrl-][Alt-][Shift-]KEY[@context]
</pre>
<p>where the <em>KEY</em> part can be F1-F9 or A-Z, and [] denote optional parts.</p>
<p>When multiple commands are bound to the same key combination, DFHack selects
the first applicable one. Later 'add' commands, and earlier entries within one
'add' command have priority. Commands that are not specifically intended for use
as a hotkey are always considered applicable.</p>
<p>The <em>context</em> part in the key specifier above can be used to explicitly restrict
the UI state where the binding would be applicable. If called without parameters,
the <tt class="docutils literal">keybinding</tt> command among other things prints the current context string.
Only bindings with a <em>context</em> tag that either matches the current context fully,
or is a prefix ending at a '/' boundary would be considered for execution, i.e.
for context <tt class="docutils literal">foo/bar/baz</tt>, possible matches are any of <tt class="docutils literal">@foo/bar/baz</tt>, <tt class="docutils literal">@foo/bar</tt>,
<tt class="docutils literal">@foo</tt> or none.</p>
</div>
</div>
<div class="section" id="commands">
<h1><a class="toc-backref" href="#id13">Commands</a></h1>
<p>DFHack command syntax consists of a command name, followed by arguments separated
by whitespace. To include whitespace in an argument, quote it in double quotes.
To include a double quote character, use <tt class="docutils literal">\"</tt> inside double quotes.</p>
<p>If the first non-whitespace character of a line is <tt class="docutils literal">#</tt>, the line is treated
as a comment, i.e. a silent no-op command.</p>
<p>If the first non-whitespace character is <tt class="docutils literal">:</tt>, the command is parsed in a special
alternative mode: first, non-whitespace characters immediately following the <tt class="docutils literal">:</tt>
are used as the command name; the remaining part of the line, starting with the first
non-whitespace character <em>after</em> the command name, is used verbatim as the first argument.
The following two command lines are exactly equivalent:</p>
<blockquote>
<ul class="simple">
<li><tt class="docutils literal">:foo a b "c d" e f</tt></li>
<li><tt class="docutils literal">foo "a b \"c d\" e f"</tt></li>
</ul>
</blockquote>
<p>This is intended for commands like <tt class="docutils literal">rb_eval</tt> that evaluate script language statements.</p>
<p>Almost all the commands support using the 'help <command-name>' built-in command
to retrieve further help without having to look at this document. Alternatively,
some accept a 'help'/'?' option on their command line.</p>
<div class="section" id="game-progress">
<h2><a class="toc-backref" href="#id14">Game progress</a></h2>
<div class="section" id="die">
<h3><a class="toc-backref" href="#id15">die</a></h3>
<p>Instantly kills DF without saving.</p>
</div>
<div class="section" id="forcepause">
<h3><a class="toc-backref" href="#id16">forcepause</a></h3>
<p>Forces DF to pause. This is useful when your FPS drops below 1 and you lose
control of the game.</p>
<blockquote>
<ul class="simple">
<li>Activate with 'forcepause 1'</li>
<li>Deactivate with 'forcepause 0'</li>
</ul>
</blockquote>
</div>
<div class="section" id="nopause">
<h3><a class="toc-backref" href="#id17">nopause</a></h3>
<p>Disables pausing (both manual and automatic) with the exception of pause forced
by 'reveal hell'. This is nice for digging under rivers.</p>
</div>
<div class="section" id="fastdwarf">
<h3><a class="toc-backref" href="#id18">fastdwarf</a></h3>
<p>Controls speedydwarf and teledwarf. Speedydwarf makes dwarves move quickly and perform tasks quickly. Teledwarf makes dwarves move instantaneously, but do jobs at the same speed.</p>
<blockquote>
<ul class="simple">
<li>'fastdwarf 0 0' disables both</li>
<li>'fastdwarf 0 1' disables speedydwarf and enables teledwarf</li>
<li>'fastdwarf 1 0' enables speedydwarf and disables teledwarf</li>
<li>'fastdwarf 1 1' enables both</li>
<li>'fastdwarf 0' disables both</li>
<li>'fastdwarf 1' enables speedydwarf and disables teledwarf</li>
<li>'fastdwarf 2 ...' sets a native debug flag in the game memory
that implements an even more aggressive version of speedydwarf.</li>
</ul>
</blockquote>
</div>
</div>
<div class="section" id="game-interface">
<h2><a class="toc-backref" href="#id19">Game interface</a></h2>
<div class="section" id="follow">
<h3><a class="toc-backref" href="#id20">follow</a></h3>
<p>Makes the game view follow the currently highlighted unit after you exit from
current menu/cursor mode. Handy for watching dwarves running around. Deactivated
by moving the view manually.</p>
</div>
<div class="section" id="tidlers">
<h3><a class="toc-backref" href="#id21">tidlers</a></h3>
<p>Toggle between all possible positions where the idlers count can be placed.</p>
</div>
<div class="section" id="twaterlvl">
<h3><a class="toc-backref" href="#id22">twaterlvl</a></h3>
<p>Toggle between displaying/not displaying liquid depth as numbers.</p>
</div>
<div class="section" id="copystock">
<h3><a class="toc-backref" href="#id23">copystock</a></h3>
<p>Copies the parameters of the currently highlighted stockpile to the custom
stockpile settings and switches to custom stockpile placement mode, effectively
allowing you to copy/paste stockpiles easily.</p>
</div>
<div class="section" id="rename">
<h3><a class="toc-backref" href="#id24">rename</a></h3>
<p>Allows renaming various things.</p>
<p>Options:</p>
<blockquote>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field"><th class="field-name" colspan="2">rename squad <index> "name":</th></tr>
<tr class="field"><td> </td><td class="field-body">Rename squad by index to 'name'.</td>
</tr>
<tr class="field"><th class="field-name" colspan="2">rename hotkey <index> "name":</th></tr>
<tr class="field"><td> </td><td class="field-body">Rename hotkey by index. This allows assigning
longer commands to the DF hotkeys.</td>
</tr>
<tr class="field"><th class="field-name" colspan="2">rename unit "nickname":</th></tr>
<tr class="field"><td> </td><td class="field-body">Rename a unit/creature highlighted in the DF user
interface.</td>
</tr>
<tr class="field"><th class="field-name" colspan="2">rename unit-profession "custom profession":</th></tr>
<tr class="field"><td> </td><td class="field-body">Change proffession name of the
highlighted unit/creature.</td>
</tr>
<tr class="field"><th class="field-name" colspan="2">rename building "name":</th></tr>
<tr class="field"><td> </td><td class="field-body">Set a custom name for the selected building.
The building must be one of stockpile, workshop, furnace, trap,
siege engine or an activity zone.</td>
</tr>
</tbody>
</table>
</blockquote>
</div>
</div>
<div class="section" id="adventure-mode">
<h2><a class="toc-backref" href="#id25">Adventure mode</a></h2>
<div class="section" id="adv-bodyswap">
<h3><a class="toc-backref" href="#id26">adv-bodyswap</a></h3>
<p>This allows taking control over your followers and other creatures in adventure
mode. For example, you can make them pick up new arms and armor and equip them
properly.</p>
<p>Usage:</p>
<blockquote>
<ul class="simple">
<li>When viewing unit details, body-swaps into that unit.</li>
<li>In the main adventure mode screen, reverts transient swap.</li>
</ul>
</blockquote>
</div>
<div class="section" id="advtools">
<h3><a class="toc-backref" href="#id27">advtools</a></h3>
<p>A package of different adventure mode tools (currently just one)</p>
<p>Usage:</p>
<blockquote>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field"><th class="field-name" colspan="2">list-equipped [all]:</th></tr>
<tr class="field"><td> </td><td class="field-body">List armor and weapons equipped by your companions.
If all is specified, also lists non-metal clothing.</td>
</tr>
<tr class="field"><th class="field-name" colspan="2">metal-detector [all-types] [non-trader]:</th></tr>
<tr class="field"><td> </td><td class="field-body">Reveal metal armor and weapons in
shops. The options disable the checks
on item type and being in shop.</td>
</tr>
</tbody>
</table>
</blockquote>
</div>
</div>
<div class="section" id="map-modification">
<h2><a class="toc-backref" href="#id28">Map modification</a></h2>
<div class="section" id="changelayer">
<h3><a class="toc-backref" href="#id29">changelayer</a></h3>
<p>Changes material of the geology layer under cursor to the specified inorganic
RAW material. Can have impact on all surrounding regions, not only your embark!
By default changing stone to soil and vice versa is not allowed. By default
changes only the layer at the cursor position. Note that one layer can stretch
across lots of z levels. By default changes only the geology which is linked
to the biome under the cursor. That geology might be linked to other biomes
as well, though. Mineral veins and gem clusters will stay on the map. Use
'changevein' for them.</p>
<p>tl;dr: You will end up with changing quite big areas in one go, especially if
you use it in lower z levels. Use with care.</p>
<p>Options:</p>
<blockquote>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field"><th class="field-name">all_biomes:</th><td class="field-body">Change selected layer for all biomes on your map.
Result may be undesirable since the same layer can AND WILL
be on different z-levels for different biomes. Use the tool
'probe' to get an idea how layers and biomes are distributed
on your map.</td>
</tr>
<tr class="field"><th class="field-name">all_layers:</th><td class="field-body">Change all layers on your map (only for the selected biome
unless 'all_biomes' is added).
Candy mountain, anyone? Will make your map quite boring,
but tidy.</td>
</tr>
<tr class="field"><th class="field-name">force:</th><td class="field-body">Allow changing stone to soil and vice versa. !!THIS CAN HAVE
WEIRD EFFECTS, USE WITH CARE!!
Note that soil will not be magically replaced with stone.
You will, however, get a stone floor after digging so it
will allow the floor to be engraved.
Note that stone will not be magically replaced with soil.
You will, however, get a soil floor after digging so it
could be helpful for creating farm plots on maps with no
soil.</td>
</tr>
<tr class="field"><th class="field-name">verbose:</th><td class="field-body">Give some details about what is being changed.</td>
</tr>
<tr class="field"><th class="field-name">trouble:</th><td class="field-body">Give some advice about known problems.</td>
</tr>
</tbody>
</table>
</blockquote>
<p>Examples:</p>
<blockquote>
<dl class="docutils">
<dt><tt class="docutils literal">changelayer GRANITE</tt></dt>
<dd>Convert layer at cursor position into granite.</dd>
<dt><tt class="docutils literal">changelayer SILTY_CLAY force</tt></dt>
<dd>Convert layer at cursor position into clay even if it's stone.</dd>
<dt><tt class="docutils literal">changelayer MARBLE all_biomes all_layers</tt></dt>
<dd>Convert all layers of all biomes which are not soil into marble.</dd>
</dl>
</blockquote>
<div class="note">
<p class="first admonition-title">Note</p>
<ul class="last simple">
<li>If you use changelayer and nothing happens, try to pause/unpause the game
for a while and try to move the cursor to another tile. Then try again.
If that doesn't help try temporarily changing some other layer, undo your
changes and try again for the layer you want to change. Saving
and reloading your map might also help.</li>
<li>You should be fine if you only change single layers without the use
of 'force'. Still it's advisable to save your game before messing with
the map.</li>
<li>When you force changelayer to convert soil to stone you might experience
weird stuff (flashing tiles, tiles changed all over place etc).
Try reverting the changes manually or even better use an older savegame.
You did save your game, right?</li>
</ul>
</div>
</div>
<div class="section" id="changevein">
<h3><a class="toc-backref" href="#id30">changevein</a></h3>
<p>Changes material of the vein under cursor to the specified inorganic RAW
material. Only affects tiles within the current 16x16 block - for veins and
large clusters, you will need to use this command multiple times.</p>
<p>Example:</p>
<blockquote>
<dl class="docutils">
<dt><tt class="docutils literal">changevein NATIVE_PLATINUM</tt></dt>
<dd>Convert vein at cursor position into platinum ore.</dd>
</dl>
</blockquote>
</div>
<div class="section" id="changeitem">
<h3><a class="toc-backref" href="#id31">changeitem</a></h3>
<p>Allows changing item material and base quality. By default the item currently
selected in the UI will be changed (you can select items in the 'k' list
or inside containers/inventory). By default change is only allowed if materials
is of the same subtype (for example wood<->wood, stone<->stone etc). But since
some transformations work pretty well and may be desired you can override this
with 'force'. Note that some attributes will not be touched, possibly resulting
in weirdness. To get an idea how the RAW id should look like, check some items
with 'info'. Using 'force' might create items which are not touched by
crafters/haulers.</p>
<p>Options:</p>
<blockquote>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field"><th class="field-name">info:</th><td class="field-body">Don't change anything, print some info instead.</td>
</tr>
<tr class="field"><th class="field-name">here:</th><td class="field-body">Change all items at the cursor position. Requires in-game cursor.</td>
</tr>
<tr class="field"><th class="field-name">material, m:</th><td class="field-body">Change material. Must be followed by valid material RAW id.</td>
</tr>
<tr class="field"><th class="field-name">quality, q:</th><td class="field-body">Change base quality. Must be followed by number (0-5).</td>
</tr>
<tr class="field"><th class="field-name">force:</th><td class="field-body">Ignore subtypes, force change to new material.</td>
</tr>