Changes for page Mission Director Guide

Last modified by Klaus Meyer on 2025/03/31 16:39

From version 32964.1
edited by Daniel Turner
on 2023/08/24 10:08
Change comment: There is no comment for this version
To version 32963.1
edited by Daniel Turner
on 2023/08/24 10:05
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -417,6 +417,8 @@
417 417  Since octal numbers are hardly ever used (usually unknowingly), the parser is will produce a warning if an octal number is encountered."
418 418  {{/info}}
419 419  
420 +
421 +
420 420  You can write string literals by putting the string in single quotes:
421 421  
422 422  * {{code language="xml"}}'Hello world'{{/code}}
... ... @@ -507,7 +507,7 @@
507 507  \\{{code language="xml"}}typeof 'Hello world'{{/code}}|
508 508  {{code language="xml"}}datatype.null{{/code}}
509 509  \\{{code language="xml"}}datatype.integer{{/code}}
510 -\\{{code language="xml"}}datatype.string{{/code}}|Yields the [[data type of the following sub-expression>>||anchor="typeof" style="outline-width: 0px !important; user-select: auto !important;"]]
512 +\\{{code language="xml"}}datatype.string{{/code}}|Yields the [[data type of the following sub-expression>>MediaWiki.NULL]]
511 511  |sin|unary|
512 512  {{code language="xml"}}sin(30deg){{/code}}
513 513  \\{{code language="xml"}}sin(pi){{/code}}|
... ... @@ -552,7 +552,7 @@
552 552  ge
553 553  \\>=|binary|
554 554  {{code language="xml"}}1 ge 3{{/code}}
555 -\\{{code language="xml"}}1 >= 3{{/code}}|{{code language="xml"}}false{{/code}}|Greater than or equal to
557 +\\{{code language="xml"}}1 <= 3{{/code}}|{{code language="xml"}}false{{/code}}|Greater than or equal to
556 556  |(((
557 557  
558 558  )))|binary|{{code language="xml"}}1 + 1 == 2.0{{/code}}|{{code language="xml"}}true{{/code}}|Equal to
... ... @@ -623,8 +623,11 @@
623 623  * Unlike != and ==, the comparison operators <, <=, >, >= are only supported **for numeric values**, **difficulty levels**, and **attention levels**. Comparing other non-numeric values will result in an error and an undefined result.
624 624  * <, <=, >, >= cannot be used in XML directly, so lt, le, gt, ge are provided as alternatives. In some cases you won't have to use them, though - using [[range checks>>MediaWiki.NULL]] with additional XML attributes can be more readable.
625 625  
626 -== (% id="categorybroken_macroanchorstrings-and-formatting" %)Strings and formatting(%%) ==
628 +(% id="categorybroken_macroanchorstrings-and-formatting" %)== Strings and formatting==
627 627  
630 +
631 +{{{==}}}
632 +
628 628  You can concatenate string literals using the + operator, but there is also a printf-like formatting syntax, which is easier to use than concatenating lots of small pieces:
629 629  
630 630  * {{code language="xml"}}'The %1 %2 %3 jumps over the %5 %4'.['quick', 'brown', 'fox', 'dog', 'lazy']{{/code}}
... ... @@ -844,7 +844,7 @@
844 844  \\faction.argongovernment|Factions
845 845  )))
846 846  
847 -{{id name="typeof"/}}
852 +{{id name="typeof" /}}
848 848  
849 849  {{info}}
850 850  With the ''typeof'' operator you can get the datatype of any expression and compare it with what you expect, for example: