ofp:missions:camp_description.ext
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
ofp:missions:camp_description.ext [2007/07/09 02:08] – created camp_description.ext initial page snakeman | ofp:missions:camp_description.ext [2024/07/31 13:06] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Campaign Description.ext ====== | + | ====== |
+ | |||
+ | [[https:// | ||
+ | |||
+ | **Operation Flashpoint (OFP)** aka ArmA: Cold War Assault (CWA) | ||
====== Caveat ====== | ====== Caveat ====== | ||
Line 10: | Line 15: | ||
| | ||
- | If you are looking for the nitty gritty of description.ext in // | + | If you are looking for the nitty gritty of description.ext in // |
====== Intro ====== | ====== Intro ====== | ||
Line 29: | Line 34: | ||
Each ' | Each ' | ||
. | . | ||
- | The content of any mission folder is an exact copy of what they were, played as single missions. | + | The content of any mission folder is an exact copy of what they were, played as single missions. |
No changes | No changes | ||
No alterations | No alterations | ||
Line 86: | Line 91: | ||
< | < | ||
- | class NoEndings | + | class NoEndings |
- | { | + | { |
- | lost = ; | + | lost = ; |
- | end1 = ; | + | end1 = ; |
- | end2 = ; | + | end2 = ; |
- | end3 = ; | + | end3 = ; |
- | end4 = ; | + | end4 = ; |
- | end5 = ; | + | end5 = ; |
- | end6 = ; | + | end6 = ; |
}; | }; | ||
</ | </ | ||
Line 104: | Line 109: | ||
< | < | ||
class MissionDefault : NoEndings | class MissionDefault : NoEndings | ||
- | { | + | { |
- | lives = -1; | + | lives = -1; |
}; | }; | ||
</ | </ | ||
Line 141: | Line 146: | ||
</ | </ | ||
- | Chapters are a containing class. Their intent is to compartmentalize the various missions you have into some semblance of sanity. One such example would be to put all Everon missions in one chapter, all Nogova missions in another. | + | Chapters are a containing class. Their intent is to compartmentalize the various missions you have into some semblance of sanity. One such example would be to put all Everon missions in one chapter, all Nogova missions in another. |
At least one chapter must exist in a campaign. It need be the only one, and it can contain all missions, should you wish it that way. | At least one chapter must exist in a campaign. It need be the only one, and it can contain all missions, should you wish it that way. | ||
Line 191: | Line 196: | ||
end6 = Chapter2; | end6 = Chapter2; | ||
lost = ; // end the campaign if a mission wants you to | lost = ; // end the campaign if a mission wants you to | ||
- | class Mission1 {...}; // whatever | + | class Mission1 {...}; // whatever |
class Mission2 {...}; // see missions for the body text | class Mission2 {...}; // see missions for the body text | ||
... | ... | ||
Line 202: | Line 207: | ||
The name of chapter classes are arbitrary. For legibility here they are named " | The name of chapter classes are arbitrary. For legibility here they are named " | ||
- | Cutscene is optional. For no cutscene intro | + | Cutscene is optional. For no cutscene intro |
< | < | ||
Line 220: | Line 225: | ||
Like missions there is no automatic fall thru from ' | Like missions there is no automatic fall thru from ' | ||
- | In the case of chapters, the ending trigger has occurred for the entire chapter. At least one of the missions, most likely the ' | + | In the case of chapters, the ending trigger has occurred for the entire chapter. At least one of the missions, most likely the ' |
mission has defaulted with no endX= declarations of it's own. for a specific, if not all, endings. This, is normal behaviour. | mission has defaulted with no endX= declarations of it's own. for a specific, if not all, endings. This, is normal behaviour. | ||
Line 245: | Line 250: | ||
cutscene = Chapter1Cutscene.Noe; | cutscene = Chapter1Cutscene.Noe; | ||
firstMission = Mission1; | firstMission = Mission1; | ||
- | class Mission1 {...}; // whatever | + | class Mission1 {...}; // whatever |
class Mission2 {...}; // see missions for the body text | class Mission2 {...}; // see missions for the body text | ||
... | ... | ||
Line 308: | Line 313: | ||
{ | { | ||
name = "My Great Campaign"; | name = "My Great Campaign"; | ||
- | firstBattle = Chapter1; | + | firstBattle = Chapter1; |
class Chapter1 : NoEndings | class Chapter1 : NoEndings | ||
{ | { | ||
Line 367: | Line 372: | ||
It should be instantly apparent that mission folders cannot have whitespace in their names. | It should be instantly apparent that mission folders cannot have whitespace in their names. | ||
- | Endings 1 to 6, are the result of ' | + | Endings 1 to 6, are the result of ' |
- | Conversely If it's not declared, and is used, it matters a great deal. Often resulting in a crash. | + | Conversely If it's not declared, and is used, it matters a great deal. Often resulting in a crash. |
Moving to " | Moving to " | ||
Line 381: | Line 386: | ||
MissionDefault contains other parameters which are not normally over-ridden by the mission itself. Notably lives=-1. Therefore even though you declare all endings in all missions, you still ' | MissionDefault contains other parameters which are not normally over-ridden by the mission itself. Notably lives=-1. Therefore even though you declare all endings in all missions, you still ' | ||
- | It should be apparent that as the author, you could write a number of missions, perhaps all in the same chapter, all of which have default endings different to the standard. For example end4 always results in the same cutscene, regardless of mission. You would change the : MissionDefault inheritance to MyEnd4Default and not bother declaring end4 in the body text of the mission class (for any missions you want this behaviour to happen in). | + | It should be apparent that as the author, you could write a number of missions, perhaps all in the same chapter, all of which have default endings different to the standard. For example end4 always results in the same cutscene, regardless of mission. You would change the : MissionDefault inheritance to MyEnd4Default and not bother declaring end4 in the body text of the mission class (for any missions you want this behaviour to happen in). |
When it comes to making several of the ending triggers all behave a similar way, it is easier to use an inheritance than tediously write endings for each one that's default. To be a little more specific, MyEnd4Default would also, undoubtedly, | When it comes to making several of the ending triggers all behave a similar way, it is easier to use an inheritance than tediously write endings for each one that's default. To be a little more specific, MyEnd4Default would also, undoubtedly, |
ofp/missions/camp_description.ext.1183946899.txt.gz · Last modified: 2007/07/10 09:52 (external edit)