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 "Template talk:Creature/is humanoid"

From Dwarf Fortress Wiki
Jump to navigation Jump to search
(Created page with "Is there any way to do wildcard matches with DFRawFunctions? I was going to add all the humanoid creature variations (HUMANOID_HOOF, the zillion different numbers of limbs eac...")
 
(re)
Line 1: Line 1:
 
Is there any way to do wildcard matches with DFRawFunctions? I was going to add all the humanoid creature variations (HUMANOID_HOOF, the zillion different numbers of limbs each type can have, etc.), but if there's any way to just search for any body tag that begins "HUMANOID_", that would be infinitely preferable.--[[User:Zzedar|Zzedar]] ([[User talk:Zzedar|talk]]) 23:55, 15 April 2013 (UTC)
 
Is there any way to do wildcard matches with DFRawFunctions? I was going to add all the humanoid creature variations (HUMANOID_HOOF, the zillion different numbers of limbs each type can have, etc.), but if there's any way to just search for any body tag that begins "HUMANOID_", that would be infinitely preferable.--[[User:Zzedar|Zzedar]] ([[User talk:Zzedar|talk]]) 23:55, 15 April 2013 (UTC)
 +
:I couldn't find any creatures that had tags like those, but something like this:
 +
<pre>{{#rsplit:{{#df_tagentry:{{/raw}}|BODY|0|1|NOT_HUMANOID}}|_|0}}</pre>
 +
should give you "HUMANOID" or something else, which can then be checked with #ifeq:
 +
<pre>{{#ifeq:{{#rsplit:{{#df_tagentry:{{/raw}}|BODY|0|1|NOT_HUMANOID}}|_|0}}|HUMANOID|1|0}}</pre>
 +
where 1=yes, 0=no. --{{User:Lethosor/sig}} 00:24, 16 April 2013 (UTC)

Revision as of 00:24, 16 April 2013

Is there any way to do wildcard matches with DFRawFunctions? I was going to add all the humanoid creature variations (HUMANOID_HOOF, the zillion different numbers of limbs each type can have, etc.), but if there's any way to just search for any body tag that begins "HUMANOID_", that would be infinitely preferable.--Zzedar (talk) 23:55, 15 April 2013 (UTC)

I couldn't find any creatures that had tags like those, but something like this:
{{#rsplit:{{#df_tagentry:{{/raw}}|BODY|0|1|NOT_HUMANOID}}|_|0}}

should give you "HUMANOID" or something else, which can then be checked with #ifeq:

{{#ifeq:{{#rsplit:{{#df_tagentry:{{/raw}}|BODY|0|1|NOT_HUMANOID}}|_|0}}|HUMANOID|1|0}}

where 1=yes, 0=no. --Lethosor (talk) 00:24, 16 April 2013 (UTC)