Difference between revisions of "Content Mounting"
From Obsidian Conflict Wiki
(New page: {{stub}} Category:MapTuts) |
|||
Line 1: | Line 1: | ||
− | { | + | Content mounting is important in Obsidian if you wish you use Episode 1 or Episode 2 content. |
+ | |||
+ | There are two ways to accomplish this: | ||
+ | |||
+ | *Appending ep1_ / ep2_ | ||
+ | |||
+ | You can append ep1_ or ep2_ to the start of your maps bsp name, best to do this by saving from hammer and compiling with that name. Ex. ep1_mymap.bsp or ep2_mymap.bsp. | ||
+ | |||
+ | *Adding a new key to your maps modify script. | ||
+ | |||
+ | In your maps modify script | ||
+ | |||
+ | <pre>mymap | ||
+ | { | ||
+ | "MountEpisodeOne" "1" | ||
+ | "MountEpisodeTwo" "1" | ||
+ | }</pre> | ||
+ | |||
+ | You can choose which content to mount, only choose to use one option, not both. | ||
+ | Note: By mounting episode 2, it automatically mounts episode 1. | ||
+ | |||
+ | |||
[[Category:MapTuts]] | [[Category:MapTuts]] |
Revision as of 04:33, 8 March 2008
Content mounting is important in Obsidian if you wish you use Episode 1 or Episode 2 content.
There are two ways to accomplish this:
- Appending ep1_ / ep2_
You can append ep1_ or ep2_ to the start of your maps bsp name, best to do this by saving from hammer and compiling with that name. Ex. ep1_mymap.bsp or ep2_mymap.bsp.
- Adding a new key to your maps modify script.
In your maps modify script
mymap { "MountEpisodeOne" "1" "MountEpisodeTwo" "1" }
You can choose which content to mount, only choose to use one option, not both. Note: By mounting episode 2, it automatically mounts episode 1.