Zh/L4D2 Campaign Add-on Tutorial
Template:Otherlang2 本简体中文页面由 Gloria 汉化(W.I.P.)。
在求生之路2代中打包你的自定义战役一共分为六个基本步骤:
- 创建Add-on文件夹与对应子文件夹。
- 创建好各类游戏资源并放入对应的子文件夹。
- 创建好数据描述文件(addoninfo.txt等)并放如对应的子文件夹。
- 将Add-on的所有内容打包成 .VPK 文件。
- 完整测试VPK文件,并修复出现的问题。
- 创建一个玩家可以从中下载你的地图的主页。
安装开发工具
为了创作求生之路2的三方内容,你需要安装求生之路2开发工具(Left 4 Dead 2 Authoring Tools)。它提供了用于创作游戏内容的各类程序与工具。一般来说,可以使用 Hammer 程序创建关卡,使用其它工具创建自定义纹理与模型。
如何创建各类游戏资源不在这个教程的介绍范围之内。你可以进入L4D关卡制作基础教程找到相关的内容。介于这篇教程的重点在于讲解如何将所有地图内容打包到VPK中,因此当你开始学习这篇教程之前,应该已经熟悉了如何创建那些游戏内容。
开发工具附带了一个叫做 Dead Line 的战役示例,包含了各类源文件示例。
创建 Add-on 文件夹
首先,在你的求生之路2代游戏安装路径下找到 'addons' 文件夹。对于大多数人来说,应该是类似下面的路径:
C:\Program Files\Steam\steamapps\common\left 4 dead 2\left4dead2\addons
注意:你的L4D2开发工具安装后可能并没有 'addons' 文件夹
在 'addons' 中创建一个新的文件夹,并取个合适的名称。这将会是你最后创建并发布的VPK文件名称。 so it's good practice to avoid spaces and use all lowercase letters. You may also include the game in the title, to differentiate it from add-ons for other titles, and optionally a version number. We'll use "deadline" instead of "l4d_deadline" for our example for the sake of readability.
...\left4dead2\addons\deadline2
Conceptually, this add-on folder will serve as the base “game” folder for your assets, and will mirror the layout in the shipped .VPK files as we shall see below.
Create primary game assets
The assets you create will essentially append those shipped with the game. For a campaign, the primary assets are the .BSP and .NAV files for your map levels.
Make a folder called 'maps
' inside your add-on project folder:
...\left4dead2\addons\deadline2\maps
Into this maps folder, copy the .BSP and .NAV files you're using for your maps. For this Dead Line tutorial example, there are three map file bsp.nav pairs:
File | Description |
---|---|
l4d_deadline01
|
Minimal starting map for co-op, versus |
l4d_deadline02
|
Final map for co-op, versus, survival, scavenge |
The advantage of having a single map function for multiple game modes is size reduction, which can be worth the additional authoring complexity.
You may also optionally create custom .VTF texture images, custom .VMT material description files, and custom .MDL models which your maps can utilize. In order to keep the size of your add-on small, it's advisable to use as many textures and models from the game as possible.
Additional .VMT and .VTF materials (see Creating a Material) should go under this folder:
...\left4dead2\addons\deadline2\materials
.MDL and related model files (see exporting and compiling a model) should go under here:
...\left4dead2\addons\deadline2\models

And materials for your models should go under here:
...\left4dead2\addons\deadline2\materials\models
It should be noted that L4D2 treats the /deadline2 folder much the same way as the /left4dead folder, so any folders you use inside the /materials and /models that you employ must also be present in your campaign's folder.
Create secondary game assets
Secondary assets such as poster and thumbnail images are not strictly required, but they can give your campaigns an extra level of polish. (Besides, the poster/concept art was likely the first thing you created, wasn't it?) If you haven't already, go ahead and make a materials
folder and a vgui
folder inside of it:
...\left4dead2\addons\deadline2\materials\vgui
Campaign Poster
Inside the vgui folder you'll want to place at least two .VTF files, along with .VMTs that reference them:
- LoadingScreen_DeadLine2.vtf
- This is a poster image that is displayed while your campaign loads. Standard size is 1024 x 1024 pixels with an alpha channel for transparency.
- OutroTitle_DeadLine2.vtf
- This is a title image that appears behind the end credits/stats. Standard size is 1024 x 256 pixels. Your design should look good against a black background and also allow white text in the foreground to be readable.
Map Thumbnail Previews
In addition to these two, you'll also want to make thumbnail images for each map in your campaign. These serve to provide a visual reinforcement indication for users while they're selecting map "chapters" in the UI.
To do so, create a new folder named 'maps
' under the vgui folder:
...\left4dead2\addons\deadline2\materials\vgui\maps
In this folder, you'll want to create a .VTF/.VMT pair for each map you wish to create. They should each be 256 by 128 pixels. If appropriate, you may use a single thumbnail image to represent multiple .BSP maps, such as when you have a versus or survival variant of the same level.
.VMT files which are used for interface elements such as posters, thumbnails, etc., (I.e. Those typically found in the materials/vgui folder,) often need to specify an UnlitGeneric material. See Deadline vgui .VMT File for an example.
Creating a sound.cache file
If you wish to have custom sounds in your add-on, you need to build an audio cache file that the engine uses to load your sounds. Place your sounds in a "sound" folder in your add-on directory, then while Left 4 Dead 2 is running enter the command "snd_buildsoundcachefordirectory <path>" with the path of your sound folder. For example, in the Deadline example, we would place sounds in:
..\left4dead2\addons\deadline2\sound
Then rebuild it with:
snd_buildsoundcachefordirectory "..\left4dead2\addons\deadline2"
This will generate a sound.cache file in the sound folder that you should include when building your VPK file.
Create metadata files
There are a few more files that you will make in order to allow your add-on content to function in game.
addoninfo.txt
The first is the addoninfo.txt file. This allows your content to be recognized by the game. It should go inside your add-on root folder, which was the first one we created way back at the top:
...\left4dead2\addons\deadline2\addoninfo.txt
This file is used by the game in the Extras->Add-ons screen. It describes your add-on in general and what it provides. The example Deadline AddonInfo File includes full comments and instructions for using it as a template for your own add-on.
addonimage.jpg
Another file you can create in the root folder is an image named addonimage.jpg. This serves as an icon to help differentiate your add-on and is displayed when an add-on is selected in the UI along with add-on details listed in the addoninfo.txt. Some JPG files may not work, depending on which application they are saved from. If you're having trouble getting you JPG to work, try exporting it from VTFEdit.
Mission File
The second required file is the mission file. This describes the structure and content of your campaign and is used by the campaign selection UI, matchmaking, and the game server. This should be a .TXT file with a unique name in the 'missions
' folder, which you will also need to make:
...\left4dead2\addons\deadline2\missions\deadline2.txt
The example Deadline Mission File includes full comments and instructions for using it as a template for your own mission.

Test it out
At this point, your add-on should be fully functional. You should be able to launch the game, go to Extras->Add-ons, and enable your add-on. If you type path
into the console, you should see the root directory of your add-on near the bottom. This means that the game will search your add-on folder for files that it cannot find in the standard game .VPK files. Play a full game on other computers to check for an errors such as crashes and missing assets. You can continue tweaking your content in folder form until you're ready for that magical moment: Release into the wild.
Packaging and shipping
The final remaining step is to package your add-on into a .VPK for distribution.
The .VPK serves as a convenient, one file method for others to install your add-on folder. They need simply put the .VPK in their own add-on folder. Or, assuming they, like most non-authoring players, haven't associated the .VPK extension with something else, they can double click on it and it will install itself in the correct place.
Every .VPK file contains a unique ID that allows the game to ensure everyone is running the same content. If you've put in meta-data properly, the game will also prompt users to download a newer version if it is required to play.
Navigate to this folder:
C:\Program Files\Steam\steamapps\common\left 4 dead 2\bin\
Locate the vpk.exe
packaging utility and make a shortcut to it on your desktop. Drag your add-on root folder and drop it onto the shortcut. The utility should make a new .VPK next to your original folder. By default it will not include source files such as .VMF, .TGA, .SMD, .QC etc., and it will always strip out executable binaries. Remove the folder version of the add-on (or move it to a safe location) so that the .VPK is alone and test it out. The .VPK should function exactly as the add-on folder does. If it works, you're ready to upload it to a location you specified in the metadata files and from which it is available.
Ideally, you'll want an add-on "homepage" that includes ratings, screenshots, and player comments. A simple example can be found here.
Compression
Since full Left 4 Dead 2 campaigns can be very large it is advisable to compress them before uploading to file sharing sites for distribution. The open source Windows utility 7-zip supports compressing files in the 7z format/LZMA algorithm, which provide a very high compression ratio. The bulk of a campaigns size comes from the .bsp map files, which are highly compressible, so a vpk can be reduced to 25% or less of its original size. For example an unofficial version of Death Aboard was packaged up by a fan; the vpk was 267MB uncompressed, 92MB zipped, and 55MB with 7z.
Final testing
At this point, you should test out the download prompt. Start a lobby with a local server, and invite a friend to join. When they accept, they should be prompted to download the necessary add-on, after which a browser window will opened to your add-on homepage. They should be able to download and install the add-on without having to restart the game, and then join your lobby.