User talk:PieTau/Mass value in Infobox/Thing?/reply (4)
< User talk:PieTau | Mass value in Infobox/Thing?
Jump to navigation
Jump to search
Revision as of 05:25, 28 December 2016 by PieTau (talk | contribs) (Reply to Mass value in Infobox/Thing?)
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, 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?