Adding chapters to your mod

From Valve Developer Community
Revision as of 12:21, 31 August 2005 by Createdbyx (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This page is currently being worked on... Adding chapters to your mod is a little complecated because you need to modify a number of files in order to add new chapters.

  • STEP 1: Create a chapter1.cfg file and put it in the cfg folder like so yourmodfolder/cfg/chapter1.cfg. Then edit the file to read

map Map1

Replacing Map1 with the name of your own map.

  • STEP 2: Goto your yourmodfolder/Resource folder an copy the HL2_english.txt file and give it the name YourModName_english.txt. (Again replacing YourModName with the name of your mod) Now you will need to edit the YourModName_english.txt file. At the top of the file add the fallowing lines above HL2_Chapter1_Title like so ...

"YourModName_Chapter1_Title" "Title of the chapter goes here"

"HL2_Chapter1_Title" "POINT INSERTION"

You can leave the original HL2_Chapter1_Title title entries as they will not affect your mod by being there.

  • STEP 3: