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.

Editing User:Fleeting Frames/militarygearclaims

Jump to navigation Jump to search

Warning: You are not logged in.
Your IP address will be recorded in this page's edit history.


The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

Latest revision Your text
Line 75: Line 75:
 
}
 
}
  
 
+
local function getItemName(item)
function getFlag(dfvalue, key)
+
     local retval = dfhack.items.getDescription(item,item.stack_size)
    -- Utility function for safely requesting info from df data
 
    if not dfvalue or not key then return nil end --pairs crash prevention
 
    flagtypetable = flagtypetable or {} --memoization so it doesn't iterate through the dfvalue if we've already checked that type of value for given flag
 
    if flagtypetable[dfvalue._type] and flagtypetable[dfvalue._type][key] then return dfvalue[key] end
 
    if flagtypetable[dfvalue._type] and flagtypetable[dfvalue._type][key]==false then return nil end
 
    if not flagtypetable[dfvalue._type] then flagtypetable[dfvalue._type] = {} end
 
    for akey, avalue in pairs(dfvalue) do
 
        if akey == key then
 
            flagtypetable[dfvalue._type][key] = true
 
            return dfvalue[akey]
 
        end
 
    end
 
    flagtypetable[dfvalue._type][key] = false
 
end
 
 
 
 
 
function getItemName(item)
 
     local retval = dfhack.items.getDescription(item,3)
 
 
     qualitytable = qualitytable or {
 
     qualitytable = qualitytable or {
 
     [0] = " ",
 
     [0] = " ",
Line 166: Line 148:
 
local function isAssignableCitizen(unit)
 
local function isAssignableCitizen(unit)
 
     if dfhack.units.isOwnCiv(unit) and  
 
     if dfhack.units.isOwnCiv(unit) and  
         -- dfhack.units.isOwnGroup(unit) and --prevents mercs
+
         -- dfhack.units.isOwnGroup(unit) and -- would prevent mercs
 
         (not
 
         (not
       ((getFlag(unit.flags1,'dead') or getFlag(unit.flags1,'inactive'))or unit.flags2.visitor or unit.flags3.ghostly) ) and
+
       (unit.flags1.dead or unit.flags2.visitor or unit.flags3.ghostly) ) and
 
       df.profession.attrs[unit.profession].can_assign_labor  
 
       df.profession.attrs[unit.profession].can_assign_labor  
 
       then
 
       then
Line 246: Line 228:
 
     end
 
     end
 
end
 
end
 +
 
</source>
 
</source>

Please note that all contributions to Dwarf Fortress Wiki are considered to be released under the GFDL & MIT (see Dwarf Fortress Wiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

To protect the wiki against automated edit spam, we kindly ask you to solve the following CAPTCHA:

Cancel Editing help (opens in new window)

This page is a member of 1 hidden category: