Difference between revisions of "User talk:PieTau/Mass value in Infobox/Thing?/reply (4)"

From RimWorld Wiki
Jump to navigation Jump to search
 
(deactivated category link)
 
Line 9: Line 9:
  
 
<br />
 
<br />
it wil 'ask' every page in [[Category: Stat]], it is like a foreach( page in Category:Stat) <br />
+
it wil 'ask' every page in [[:Category: Stat]], it is like a foreach( page in Category:Stat) <br />
 
                                             a page is like a text but with a link on the wiki<br />
 
                                             a page is like a text but with a link on the wiki<br />
 
and it will follow the template:Entry/Base Stat as its guide for what to do with each page<br />
 
and it will follow the template:Entry/Base Stat as its guide for what to do with each page<br />

Latest revision as of 16:52, 10 April 2023

for explaining ask lets look at this

{{#ask: [[Category: Stat]]
| format = template
| template = Entry/Base Stat
| link = none
| limit = 250
}}


it wil 'ask' every page in Category: Stat, it is like a foreach( page in Category:Stat)

                                            a page is like a text but with a link on the wiki

and it will follow the template:Entry/Base Stat as its guide for what to do with each page
so to understand how it will display the information you will have to look at template:Entry/Base Stat and all of its underlying code
limit is 250 because there is a limit on response time and it's also a security for infinite loops



a bit more clear?