Difference between revisions of "Content Mounting"

From Obsidian Conflict Wiki
Jump to: navigation, search
(Adding a new key to your maps modify Script)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
 +
{{Languages}}
 +
 
Content mounting is important in Obsidian if you wish to use Episode 1 or Episode 2 content.
 
Content mounting is important in Obsidian if you wish to use Episode 1 or Episode 2 content.
  
Line 23: Line 25:
  
 
You can also use mymap_mounts.txt instead of mymap_modify.txt for that since you need to make a .res file and send that to the client in order to get the mounting working. (This option was made for those who don't want to let other people see your Script)
 
You can also use mymap_mounts.txt instead of mymap_modify.txt for that since you need to make a .res file and send that to the client in order to get the mounting working. (This option was made for those who don't want to let other people see your Script)
In fact, we suggest you to use the mymap_mounts.txt way since it has proven to work flawless, while using the modify script often doesn't mount content on the clients. Something we have to investigate further.
+
 
 +
'''In fact, we suggest you to use the mymap_mounts.txt way since it has proven to work flawless, while using the modify script often doesn't mount content on the clients. Something we have to investigate further.'''
  
 
== Notes ==
 
== Notes ==
 
By mounting episode 2, it automatically mounts episode 1.
 
By mounting episode 2, it automatically mounts episode 1.
 
[[Category:MapTuts]]
 
[[Category:MapTuts]]

Latest revision as of 17:53, 12 August 2011

Language: [[::Content Mounting|English]]  • [[::Content Mounting/zh-hans|中文(简体)‎]]

Content mounting is important in Obsidian if you wish to use Episode 1 or Episode 2 content.

Note: If you don't need Episode 1 or Episode 2 content simply don't mount it since it makes the load time longer.


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.

You can also use mymap_mounts.txt instead of mymap_modify.txt for that since you need to make a .res file and send that to the client in order to get the mounting working. (This option was made for those who don't want to let other people see your Script)

In fact, we suggest you to use the mymap_mounts.txt way since it has proven to work flawless, while using the modify script often doesn't mount content on the clients. Something we have to investigate further.

Notes

By mounting episode 2, it automatically mounts episode 1.