Mission screen
From Elite Wiki
Mission screens
They can have backdrops, changes in text and allow options for the player.
The text can be placed in a descriptions.plist, details about it in a script.js
Contents
Text
- Several spacial characters are used in determining the layout of the text, just as in Wiki.
\" Enables the use of colons. \\n Insert a hard Enter.
In XML:
\n Inserts a hard Enter.
- Character '31' (hex:1F, octal:037) is a narrow 'hair-space'. Custom font OXPs should ensure that this character is blank and has the same narrow width as the core font definition, as it is used to allow an equivalent to 'tab stops' in mission text.
- See Missiontext.plist for more detail (eg random names, naming current system etc)
Colour
- Choices can be non-yellow (have a look at the various contracts interfaces in 1.77) but there is a more fundamental limitation of the current UI code that all text on a particular line has to be the same colour. Cim (2013)
Backdrop
- This is managed from within the script.js file:
background: ""the_file_name_of_the_image_you_want_to_display_must_be_in_the_images_folder.png",
or you can use overlay instead of background (less conflicts with other oxp's such as XenonUI which also specify a background)
Links
- Creating a mission screen for textual messages
- Changing text colour