1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
|
=== Substitution codes ===
%c
Display a single character whose code is the low 8-bits of the value.
%d
Display a signed decimal number.
%i
Display a picture. Consumes two arguments, being first a class and then
the image number. If either argument is not valid, displays nothing. The
picture may take up multiple lines of space; the lines will be moved
|
>
>
>
>
|
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
|
=== Substitution codes ===
%c
Display a single character whose code is the low 8-bits of the value.
%C
The low 3-bits of the argument specifies the colour of the text. If it
is not a number, then the colour is unchanged.
%d
Display a signed decimal number.
%i
Display a picture. Consumes two arguments, being first a class and then
the image number. If either argument is not valid, displays nothing. The
picture may take up multiple lines of space; the lines will be moved
|