Releasing a map

From Fortress Forever Wiki
Jump to navigationJump to search
Mapping for FF
The Basics

Setting up Hammer
Getting Started With Lua
Releasing a map

FF-specific Entities

Lua location system

Map Templates
FF Lua Documentation

Entity Typing
Entity Collections

Commands
Callbacks

Introduction

You've made a map, now you probably want people to play it, right?

Finishing touches

Before you compile, remember these finishing touches:

Then compile with full vis, -final lighting, and HDR if you wish. You want this version of the map to look and play as well as possible.

  • Do a final visual inspection. Test out flags, doors, ammo bags, and spawns for all teams.
  • Build your cubemaps.
  • Bspzip any files you want to imbed into the map.

Files to include

Only the first two files are strictly needed, though all are recommended.

  • maps\mapname.bsp --the map
  • maps\mapname.lua --The game script
  • maps\mapname.res --A Resource list of all included files; This is used for when players download the map from a server.
  • maps\mapname.txt --A short description of the map, contact information, etc.
  • materials\vgui\loadingscreen\mapname.vmt --loading screen material
  • materials\vgui\loadingscreen\mapname.vtf --loading screen texture

Finally, include any custom textures, models, sounds, etc. your map uses--unless you've already used bspzip.

Zip it up

Pack all your files for easy distribution. .zip and .rar are popular compression formats. If you include the directory structure as listed above, users can simply unzip the archive into their FortressForever folder, and they will be ready to go.

Testing

It's important to give your installer out to a few players and play it on a server before releasing it to the general public. Your testers may find bugs, graphical glitches, or missing files that you wouldn't.

Host it

Put a list of hosting sites here?