Description.ext: Difference between revisions
No edit summary |
m (Formating text) |
||
Line 3: | Line 3: | ||
<b>Features of the Description.ext</b> | <b>Features of the Description.ext</b> | ||
The Description.ext is a text file which will allow you to define many things in your mission. This is a list of definitions with description of what they do. Each example must be given a new line in the Description.ext. | The Description.ext is a text file which will allow you to define many things in your mission. This is a list of definitions with description of what they do. Each example must be given a new line in the Description.ext. | ||
Line 9: | Line 9: | ||
This displays a message whilst the mission is loading. Note that a mission that takes very little time to load will only display the message for a short time. Care should be taken to see whether your message is readable in that timeframe. | This displays a message whilst the mission is loading. Note that a mission that takes very little time to load will only display the message for a short time. Care should be taken to see whether your message is readable in that timeframe. | ||
Example:<br> | '''Example:'''<br> | ||
OnLoadMission = "YourMessage"<br> | OnLoadMission = "YourMessage"<br> | ||
OnLoadIntro = "YourMessage"<br> | OnLoadIntro = "YourMessage"<br> | ||
Line 17: | Line 17: | ||
This allows you to define whether you will see the time and date displayed whilst the mission loads. Variables are True or False. | This allows you to define whether you will see the time and date displayed whilst the mission loads. Variables are True or False. | ||
Example:<br> | '''Example:'''<br> | ||
OnLoadIntroTime = False<br> | OnLoadIntroTime = False<br> | ||
OnLoadMissionTime = False; | OnLoadMissionTime = False; | ||
Line 25: | Line 25: | ||
This feature allows you to set scores for your mission. Score is related to the star display in the debriefing screen. | This feature allows you to set scores for your mission. Score is related to the star display in the debriefing screen. | ||
Example:<br> | '''Example:'''<br> | ||
MinScore = 0;<br> | MinScore = 0;<br> | ||
AvgScore = 1800;<br> | AvgScore = 1800;<br> | ||
MaxScore = 7500;<br> | MaxScore = 7500;<br> | ||
ShowGPS = 0 | ShowGPS = 0 |
Revision as of 16:53, 29 May 2006
Features of the Description.ext
The Description.ext is a text file which will allow you to define many things in your mission. This is a list of definitions with description of what they do. Each example must be given a new line in the Description.ext.
OnLoadMission et al
This displays a message whilst the mission is loading. Note that a mission that takes very little time to load will only display the message for a short time. Care should be taken to see whether your message is readable in that timeframe.
Example:
OnLoadMission = "YourMessage"
OnLoadIntro = "YourMessage"
OnLoadIntroTime et al
This allows you to define whether you will see the time and date displayed whilst the mission loads. Variables are True or False.
Example:
OnLoadIntroTime = False
OnLoadMissionTime = False;
Score
This feature allows you to set scores for your mission. Score is related to the star display in the debriefing screen.
Example:
MinScore = 0;
AvgScore = 1800;
MaxScore = 7500;
ShowGPS = 0