falcon4:campaign
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
falcon4:campaign [2008/11/02 09:09] – added objectives and ordered headers alphabetically. snakeman | falcon4:campaign [2024/07/31 07:54] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Campaign ====== | + | ====== |
- | Campaign is the most interesting part of Falcon 4, its really a dynamic, there is no scripted missions. Campaign is edited by [[falcon4: | + | [[https:// |
+ | |||
+ | **Falcon 4 Campaign** is the most interesting part of Falcon 4, its really a **Dynamic Campaign**, there is no scripted missions. | ||
+ | |||
+ | Campaign is edited by [[falcon4: | ||
We have listed [[falcon4: | We have listed [[falcon4: | ||
Line 7: | Line 11: | ||
See our dedicated tutorial for [[falcon4: | See our dedicated tutorial for [[falcon4: | ||
- | Now obsolete, but still online for reference [[falcon4:campaign: | + | Now obsolete, but still online for reference [[falcon4:tools: |
- | [[falcon4: | + | Road [[falcon4: |
Objective [[falcon4: | Objective [[falcon4: | ||
Line 15: | Line 19: | ||
[[falcon4: | [[falcon4: | ||
- | [[falcon4: | + | Airfield |
[[falcon4: | [[falcon4: | ||
- | [[falcon4: | + | Cockpit |
- | Check out well known [[falcon4: | + | Check out well known [[falcon4: |
[[falcon4: | [[falcon4: | ||
[[falcon4: | [[falcon4: | ||
+ | |||
+ | [[falcon4: | ||
+ | |||
+ | Guide for [[falcon4: | ||
Line 32: | Line 40: | ||
First you need map bitmap for this theater, which you can make with [[falcon4: | First you need map bitmap for this theater, which you can make with [[falcon4: | ||
- | In [[falcon4: | + | In [[falcon4: |
To delete the existing objectives/ | To delete the existing objectives/ | ||
- | Start TacEdit, select save0.cam (original Korea), delete every objective/ | + | Start TacEdit, select save0.cam (original Korea), delete every objective/ |
^ Theater X/Y ^ Segments ^ | ^ Theater X/Y ^ Segments ^ | ||
Line 47: | Line 55: | ||
Restart TacEdit and select same save0.cam file, which now is totally clean. select Campaign and see if Theater is really " | Restart TacEdit and select same save0.cam file, which now is totally clean. select Campaign and see if Theater is really " | ||
- | This point load your theaters map with "Load Background Bitmap" | + | This point load your theaters map with "Load Background Bitmap" |
Click Objectives -> Import Objectives and select the correct .CSV file. OK now you have lot of objects in the map, check Object List menu to see if the names came out right. If the Objective section shows lot of numbers, then something is wrong. There should be clear names or at least " | Click Objectives -> Import Objectives and select the correct .CSV file. OK now you have lot of objects in the map, check Object List menu to see if the names came out right. If the Objective section shows lot of numbers, then something is wrong. There should be clear names or at least " | ||
Line 90: | Line 98: | ||
Carrier battle groups and squadrons to them can be easily placed with TCL scripts. | Carrier battle groups and squadrons to them can be easily placed with TCL scripts. | ||
- | Insert Navy unit, place it to a good spot. Take a note of its ID and coordinates. Next add a squadron, click any airbase available (no matter which one), then at Squadron Page at the slot Airbase Id you will need to type the Carrier' | ||
+ | Insert Navy unit, place it to a good spot. Take a note of its ID and coordinates. Next add a squadron, click any airbase available (no matter which one), then at Squadron Page at the slot Airbase ID you will need to type the Carrier' | ||
+ | |||
+ | **Adding squadrons to carriers by TCL scripts** | ||
+ | |||
+ | Here is direct copy paste from PMC Korean Campaigns TCL scripts how to add carrier squadrons. | ||
+ | <code cpp> | ||
+ | # CARRIER FLEETS | ||
+ | # | ||
+ | #*USS Ranger CVW-2 NE | ||
+ | # F14A (VF1 and VF2); | ||
+ | # A6E (VA155); | ||
+ | # E-2C (VAW116); | ||
+ | # EA6B (VAQ131); | ||
+ | # S3A (VS38); SH3H (HS14) | ||
+ | set carrx 690 | ||
+ | set carry 540 | ||
+ | set sqname $squadname | ||
+ | |||
+ | # USS RANGER | ||
+ | # 545 - navy (carrier CV-67 Kennedy) | ||
+ | set newid [unit create 445] | ||
+ | unit set $newid bflags 2 control 1 x $carrx y $carry name 2 unitflags 32 destx $carrx desty $carry | ||
+ | incr sqname 1 | ||
+ | # 455 - fighter (f-14b) | ||
+ | set newid [unit create 355] | ||
+ | unit set $newid bflags 3 control 1 x $carrx y $carry name $sqname unitflags 32 destx $carrx desty $carry | ||
+ | incr sqname 1 | ||
+ | set newid [unit create 355] | ||
+ | unit set $newid bflags 3 control 1 x $carrx y $carry name $sqname unitflags 32 destx $carrx desty $carry | ||
+ | incr sqname 1 | ||
+ | # 473 - fighter (f/a-18c) | ||
+ | set newid [unit create 373] | ||
+ | unit set $newid bflags 3 control 1 x $carrx y $carry name $sqname unitflags 32 destx $carrx desty $carry | ||
+ | incr sqname 1 | ||
+ | set newid [unit create 373] | ||
+ | unit set $newid bflags 3 control 1 x $carrx y $carry name $sqname unitflags 32 destx $carrx desty $carry | ||
+ | incr sqname 1 | ||
+ | # 475 - attack (a-6e) | ||
+ | set newid [unit create 375] | ||
+ | unit set $newid bflags 3 control 1 x $carrx y $carry name $sqname unitflags 32 destx $carrx desty $carry | ||
+ | incr sqname 1 | ||
+ | # 513 - awacs (e-2c) | ||
+ | set newid [unit create 413] | ||
+ | unit set $newid bflags 3 control 1 x $carrx y $carry name $sqname unitflags 32 destx $carrx desty $carry | ||
+ | incr sqname 1 | ||
+ | # 496 - ecm (ea-6b) | ||
+ | set newid [unit create 396] | ||
+ | unit set $newid bflags 3 control 1 x $carrx y $carry name $sqname unitflags 32 destx $carrx desty $carry | ||
+ | printout "USS RANGER (cv-67 kennedy), english channel" | ||
+ | printout "USS RANGER: 2x f-14b, 2x f/a-18c, a-6e, e-2c, ea6b." | ||
+ | </ | ||
+ | Important values are //set carrx// <X coord> and //set carry// <Y coord>, these are the location of your carrier Navy unit. | ||
+ | |||
+ | Then //set sqname $squadname// | ||
+ | |||
+ | And finally the actual aircraft squadron gets added with //set newid [unit create <TacEdit ID>]// command. | ||
+ | |||
+ | Take a note that this is the little bit old method of adding squadrons, there is newer much improved code to do the same effect with less clutter on your main TCL by using procedure. This is the code for the main TCL for this procedure: | ||
+ | <code cpp> | ||
+ | # | ||
+ | # Carrier Fleets | ||
+ | # | ||
+ | set carrx 730 | ||
+ | set carry 1220 | ||
+ | # | ||
+ | # SQUADRON VARIABLES carriers ;) | ||
+ | # | ||
+ | set sqname $squadname | ||
+ | set carrname 32 | ||
+ | |||
+ | source " | ||
+ | </ | ||
+ | This TCL code calls the // | ||
+ | < | ||
+ | # | ||
+ | # CARRIER FLEETS PRESENT DAY SPx latest! | ||
+ | # | ||
+ | |||
+ | set newid [unit create 2156] | ||
+ | unit set $newid bflags 2 control 1 x $carrx y $carry name $carrname unitflags 32 destx $carrx desty $carry | ||
+ | # 455 - fighter (f-14b) | ||
+ | set newid [unit create 355] | ||
+ | unit set $newid bflags 2 control 1 x $carrx y $carry name $squadname unitflags 32 destx $carrx desty $carry | ||
+ | incr squadname 1 | ||
+ | set newid [unit create 355] | ||
+ | unit set $newid bflags 2 control 1 x $carrx y $carry name $squadname unitflags 32 destx $carrx desty $carry | ||
+ | incr squadname 1 | ||
+ | # 373 - fighter (f/a-18c) | ||
+ | set newid [unit create 373] | ||
+ | unit set $newid bflags 2 control 1 x $carrx y $carry name $squadname unitflags 32 destx $carrx desty $carry | ||
+ | incr squadname 1 | ||
+ | set newid [unit create 373] | ||
+ | unit set $newid bflags 2 control 1 x $carrx y $carry name $squadname unitflags 32 destx $carrx desty $carry | ||
+ | incr squadname 1 | ||
+ | # 475 - attack (a-6e) | ||
+ | set newid [unit create 375] | ||
+ | unit set $newid bflags 2 control 1 x $carrx y $carry name $squadname unitflags 32 destx $carrx desty $carry | ||
+ | incr squadname 1 | ||
+ | set newid [unit create 375] | ||
+ | unit set $newid bflags 2 control 1 x $carrx y $carry name $squadname unitflags 32 destx $carrx desty $carry | ||
+ | incr squadname 1 | ||
+ | # 496 - ecm (ea-6b) | ||
+ | set newid [unit create 396] | ||
+ | unit set $newid bflags 2 control 1 x $carrx y $carry name $squadname unitflags 32 destx $carrx desty $carry | ||
+ | incr squadname 1 | ||
+ | # 513 - awacs (e-2c) | ||
+ | set newid [unit create 413] | ||
+ | unit set $newid bflags 2 control 1 x $carrx y $carry name $squadname unitflags 32 destx $carrx desty $carry | ||
+ | incr squadname 1 | ||
+ | |||
+ | printout " | ||
+ | </ | ||
+ | This latest code adds as its script name suggests, present time carrier squadron setup including the aircraft' | ||
====== Ground Units ====== | ====== Ground Units ====== | ||
Line 108: | Line 228: | ||
* Many ROK army bases near the FLOT. | * Many ROK army bases near the FLOT. | ||
* Many DPRK HART sites, D-30 artillery in the FLOT. | * Many DPRK HART sites, D-30 artillery in the FLOT. | ||
- | * Ten (10) SAM sites in Wonsan region, 9 SAMs in pyongyang | + | * Ten (10) SAM sites in Wonsan region, 9 SAMs in Pyongyang |
* Alot of Army bases and Depots on both sides spread across the theater. | * Alot of Army bases and Depots on both sides spread across the theater. | ||
* ROK has 4 HQs, DPRK has 5. | * ROK has 4 HQs, DPRK has 5. | ||
- | * ROK has 10 radar sites, | + | * ROK has 10 radar sites, |
* ROK has 8 SAM sites, DPRK has... well over 30 or so. | * ROK has 8 SAM sites, DPRK has... well over 30 or so. | ||
* ROK has 11 nuclear plants, DPRK has 14. | * ROK has 11 nuclear plants, DPRK has 14. | ||
Line 126: | Line 246: | ||
| Bridge | 10, 20, 25, 30, 40, 50 | 20 | | | Bridge | 10, 20, 25, 30, 40, 50 | 20 | | ||
| Chemical Plant | 10, 30 | 30 | | | Chemical Plant | 10, 30 | 30 | | ||
- | | City | 10, 15, 20, 25, 30, 40, 50, 60, 81-100 | 30, 100 pongyang | + | | City | 10, 15, 20, 25, 30, 40, 50, 60, 81-100 | 30, 100 Pyongyang |
| Depot | 10, 30 | 30 | | | Depot | 10, 30 | 30 | | ||
| Factory | 10, 20, 30, 40 | 30 | | | Factory | 10, 20, 30, 40 | 30 | | ||
Line 154: | Line 274: | ||
====== Objectives ====== | ====== Objectives ====== | ||
- | Objectives are the ground objects/ | + | Objectives are the ground objects / models in the campaign. Objectives are linked (see [[falcon4: |
In TacEdit if you have problem with // | In TacEdit if you have problem with // | ||
- | Parent objectives. If you have lets say a city and airbase, you don' | + | Parent objectives. If you have lets say a city and airbase, you don' |
+ | |||
+ | |||
+ | ====== Tactical Engagement (TE) ====== | ||
+ | |||
+ | This is quick tutorial how to to create a working Tactical Engagement (TE). | ||
+ | |||
+ | TE is the te_new.tac file in your Falcon campaign directory, its sort of like save?.cam file on most parts, but there is no ground units and squadrons, as those are placed by the user in TE editor ingame. | ||
+ | |||
+ | First and foremost you need to be able to create working set of campaign objectives (objects in the .cam file), when you have done that successfully you can proceed. | ||
+ | |||
+ | **Creating te_new.tac tutorial**: | ||
+ | |||
+ | - Open a te_new.tac file, delete everything. Do this by going into Campaign menu, then choosing Edit -> Delete all, then proceeding the same procedure to Object List, Objective Delta, Pol, and Units menus. | ||
+ | - Save and restart TacEdit. | ||
+ | - Load te_new.tac and go to a Map View, then choose Objectives -> Import Objectives. Give it the .csv file where you saved your campaign objectives. | ||
+ | - In Map View, choose half of the objectives and set them to Team 1, then choose rest and set them to Team 2. TE only can have 2 teams (blue and red). | ||
+ | - Save and you are done. | ||
+ | |||
+ | Remember that te_new.tac is always the "child of save?.cam family", | ||
Line 178: | Line 317: | ||
#ENDSCRIPT | #ENDSCRIPT | ||
</ | </ | ||
- | + | Now your campaign run until you reach 30 days. We want this file to be clean because default | |
- | Now your campaign run until you reach 30 days. We want this file to be clean because default | + | |
Complete list of triggers in [[falcon4: | Complete list of triggers in [[falcon4: | ||
falcon4/campaign.1225616967.txt.gz · Last modified: 2008/11/02 09:09 (external edit)