|
|
@ -1,8 +1,6 @@
|
|
|
|
function fixnaked()
|
|
|
|
function fixnaked()
|
|
|
|
local total_fixed = 0
|
|
|
|
local total_fixed = 0
|
|
|
|
local total_uncovered = 0
|
|
|
|
local total_removed = 0
|
|
|
|
local total_noshirt = 0
|
|
|
|
|
|
|
|
local total_noshoes = 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for fnUnitCount,fnUnit in ipairs(df.global.world.units.all) do
|
|
|
|
for fnUnitCount,fnUnit in ipairs(df.global.world.units.all) do
|
|
|
|
if fnUnit.race == df.global.ui.race_id then
|
|
|
|
if fnUnit.race == df.global.ui.race_id then
|
|
|
@ -17,24 +15,16 @@ for fnUnitCount,fnUnit in ipairs(df.global.world.units.all) do
|
|
|
|
local events = fnUnit.status.recent_events
|
|
|
|
local events = fnUnit.status.recent_events
|
|
|
|
found = 0
|
|
|
|
found = 0
|
|
|
|
for k,v in pairs(events) do
|
|
|
|
for k,v in pairs(events) do
|
|
|
|
if v.type == 109 then
|
|
|
|
if v.type == df.unit_thought_type.Uncovered
|
|
|
|
|
|
|
|
or v.type == df.unit_thought_type.NoShirt
|
|
|
|
|
|
|
|
or v.type == df.unit_thought_type.NoShoes
|
|
|
|
|
|
|
|
or v.type == df.unit_thought_type.NoCloak
|
|
|
|
|
|
|
|
or v.type == df.unit_thought_type.OldClothing
|
|
|
|
|
|
|
|
or v.type == df.unit_thought_type.TatteredClothing
|
|
|
|
|
|
|
|
or v.type == df.unit_thought_type.RottedClothing then
|
|
|
|
events:erase(k)
|
|
|
|
events:erase(k)
|
|
|
|
found = 1
|
|
|
|
found = 1
|
|
|
|
total_uncovered = total_uncovered + 1
|
|
|
|
total_removed = total_removed + 1
|
|
|
|
fixed = 1
|
|
|
|
|
|
|
|
break
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
if v.type == 110 then
|
|
|
|
|
|
|
|
events:erase(k)
|
|
|
|
|
|
|
|
found = 1
|
|
|
|
|
|
|
|
total_noshirt = total_noshirt + 1
|
|
|
|
|
|
|
|
fixed = 1
|
|
|
|
|
|
|
|
break
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
if v.type == 111 then
|
|
|
|
|
|
|
|
events:erase(k)
|
|
|
|
|
|
|
|
found = 1
|
|
|
|
|
|
|
|
total_noshoes = total_noshoes + 1
|
|
|
|
|
|
|
|
fixed = 1
|
|
|
|
fixed = 1
|
|
|
|
break
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
@ -42,17 +32,10 @@ for fnUnitCount,fnUnit in ipairs(df.global.world.units.all) do
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if fixed == 1 then
|
|
|
|
if fixed == 1 then
|
|
|
|
total_fixed = total_fixed + 1
|
|
|
|
total_fixed = total_fixed + 1
|
|
|
|
print(total_fixed, total_uncovered+total_noshirt+total_noshoes,dfhack.TranslateName(dfhack.units.getVisibleName(fnUnit)))
|
|
|
|
print(total_fixed, total_removed, dfhack.TranslateName(dfhack.units.getVisibleName(fnUnit)))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
print("thought 109 = "..df.unit_thought_type[109])
|
|
|
|
|
|
|
|
print("thought 110 = "..df.unit_thought_type[110])
|
|
|
|
|
|
|
|
print("thought 111 = "..df.unit_thought_type[111])
|
|
|
|
|
|
|
|
print("Total Fixed: "..total_fixed)
|
|
|
|
print("Total Fixed: "..total_fixed)
|
|
|
|
print("Total thoughts removed: "..total_uncovered)
|
|
|
|
|
|
|
|
print("Total thoughts removed: "..total_noshirt)
|
|
|
|
|
|
|
|
print("Total thoughts removed: "..total_noshoes)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
fixnaked()
|
|
|
|
fixnaked()
|
|
|
|