v50 Steam/Premium information for editors
  • 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.
This notice may be cached—the current version can be found here.

Difference between revisions of "23a:Demand"

From Dwarf Fortress Wiki
Jump to navigation Jump to search
(the code does not appear to initialize the demand timer to 0 (as it does in 40d and later), which would explain why I've seen them instantly expire; gonna have to patch that one)
m
 
Line 11: Line 11:
 
Demands should not be confused with [[mandate]]s.
 
Demands should not be confused with [[mandate]]s.
  
Due to a bug, a demand's age is not properly initialized to zero upon creation, so the 42 day grace period may be shortened (or skipped entirely) or the demand may simply be forgotten the instant it is made.
+
Due to a bug, a demand's age is not properly initialized to zero upon creation, so the 42 day grace period may be shortened (or skipped entirely) or the demand may simply be forgotten the instant it is made. The following patch for version 0.23.130.23a fixes this:
 +
{{spoil small|<nowiki>0x2B45A1 : 8B 4C 24 34 66 8B 54 -> 31 C0 89 42 0C 8B 4C
 +
0x2B45AC : 51 -> 4A</nowiki>|Binary Patch Enclosed}}
  
 
{{Category|Nobles}}
 
{{Category|Nobles}}
 
{{Category|Fortress mode}}
 
{{Category|Fortress mode}}

Latest revision as of 15:38, 30 June 2021

This article is about an older version of DF.

A demand is a noble's request that your dwarves build a specific item of furniture in one of their rooms. All nobles, with the sole exception of the house råsh, can make demands.

When a noble makes a demand, you will have about a month and a half to fulfill it. Demands are always for furniture, and can be for either furniture of a certain type (like a table) or furniture of a certain material (like copper items). Sometimes they specify both, for example "green glass window in dining room". It can happen that the demand will read "item in room" - this is due to a bug and the demand then cannot be fulfilled.

Demands are announced at the bottom of the screen, but if you miss the message, you can see if a noble is demanding anything on the nobles screen. If the uppercase bracketed word '[DEMAND]' next to a noble's name is gray, he is making no demands. If white, his current demands have been fulfilled or surpassed. If brown (or yellow when highlighted) the noble has stated their demand and has given you time to complete it. If red, the demanded is expected to have been completed already.

Fulfilling the demand gives the noble a happy thought. If a demand goes without being fulfilled, the noble will get an unhappy thought about the state of demands, increasing in severity if multiple demands go ignored at once. There are no other direct consequences to failing to fill a demand. After about 3 years, an announcement will be made that the noble has simply "forgotten" the demand.

Demands should not be confused with mandates.

Due to a bug, a demand's age is not properly initialized to zero upon creation, so the 42 day grace period may be shortened (or skipped entirely) or the demand may simply be forgotten the instant it is made. The following patch for version 0.23.130.23a fixes this: