What other things do you need for map making?

cookiesurvival

L2: Junior Member
Jul 5, 2015
53
35
I know hammer is the first thing that comes to mind, maybe even the only thing. But Im talking about stuff like textures, sounds, and props. So since I cant stand on researching on these things, Ill ask this now. What other programs are required for TF2 map making?

Here's a list of solutions that I already know :p :

TF2
Hammer
Computer/Laptop
Intelligence
Motivation/Self-Esteem
 
Last edited:

Nighttime71

L2: Junior Member
Jan 11, 2016
86
40
If you want textures then:
VTFEdit
GIMP or Paint.net if you don't want to pay nothing

Sounds:
YoutubetoMP3
Audacity (to crop the sounds out)
+LAME (to export mp3)

For models IDK if you want to be really cheap use:
Propper

But everyone will recommend you other tools like Blender (free) or Maya or 3dsmax (pay).
IDK how to model so search some way but I think there is a TF2Maps page explaining modeling a little.
 

nickybakes

You should've played Rumbleverse
aa
Jul 28, 2015
911
1,739
Knowledge
tai_lopez.jpg
 

nickybakes

You should've played Rumbleverse
aa
Jul 28, 2015
911
1,739
Memes are also very nice to have.

I'd also say get some funky, jammin, beats on, as Dave said. Always helps me get through tough workloads.
 
Last edited:

SC PL

local shitposter
aa
Jun 25, 2015
378
407
Hammer
GIMP 2.6.11
VTFedit
TF2 with the newest update
Steam
Internet connection (But I can hammer without interwebz connection)
Laptop
Mouse (I don't like to use touchpad)
Some songs from the internet (If I don't have internerd connection I listen to osu! songs instead)
Memes

And of couse motivation
 

henke37

aa
Sep 23, 2011
2,075
515
A text editor is very handy for making custom materials, mvm missions, soundscapes and so on.
 
Last edited:

worMatty

Repacking Evangelist
aa
Jul 22, 2014
1,257
999
Textures
Source uses materials, which are made up of two files. The VMT (Valve Material Type) and the VTF (Valve Texture Format). The VTF is the actual image file, and is compressed using one of a few formats the engine supports (the most commonly-used are DXT1 and DXT5). It's also where mipmaps are kept. The VMT is a text file that specifies how VTFs will be used, and what properties brush faces with the material applied to them will have. For instance, surface properties such as metal and concrete, scale, rotation, scrolling, illumination and reflectivity (in the shiny sense).

As mentioned above, you can make textures in any paint package, and convert them from TGA or PNG files to VTF using an application like VTFEdit. The dimensions of textures need to be a power of 2 (e.g. 256, 512, 1024). TF2 supports the use of normal maps in its materials to use shading to imitate protrusions and recessions, and specular maps to control which parts of a texture should be reflective and how much. Every VTF needs a VMT in order to see it in Hammer and use it in a map, and VTFs can be referenced by multiple VMTs. This allows you to display your texture using different properties and only need to create a new VMT file for each version, saving disk space.

Sounds
TF2 supports wav files of most bitrates, and special looping wav files. It supports MP3 files at 128kbps, 44.1khz. MP3 should be used in almost all situations. Sound files should be placed inside the tf/sounds directiry (or tf/custom/<whatever>/sounds) and can be addressed directly in Hammer, though MP3 files can't be previewed in Hammer. You can incorporate bunches of sounds into soundscapes and soundscripts. Soundscapes are scripts that control the environmental sound effects one hears in the background of a map. Soundscripts are lists of audio files with pre-set parameters like speed, pitch, volume and attenuation. The use is soundscripts is preferable to directly addressing sound files because it makes sound louder, and lets you tweak them after you compile the map, so you don't need to keep editing them in Hammer and recompiling. Soundscape and soundscript files are text files that can be edited in a text editor.

Audacity is a free audio editing program that will take care of most of the things you'll need to prepare audio files.

Props
Props are better than brushes for objects that have fine detail, shading, and will be used repeatedly. Maps have a maximum number of brush sides (a ceiling that can be hit by maps that have a lot of brushes in them) so using props will reduce the number of brushes. You can make basic props out of brushes using Propper, but in the long-term it's best to learn to use a 3D modelling program such as Blender. Learning how to use a 3D modelling program can be daunting, but once you start to grasp the basics, they will seem as easy to use as Hammer (assuming you feel that way about Hammer). Of course, finding tutorials to help you grasp the basics can be tricky. Pop into the chat room or ask on the forum for recommendations.

There are three types of props: static (doesn't move, has the best lighting and shading), dynamic (can move, be toggled off or is animated) and physics (tumbles around in a realistic fashion when receiving force). Dynamic and physics props count as networked entities. Servers should typically handle a maximum of 1400 networked entities/edicts. They are made up of players, weapons, cosmetics, projectiles, map logic entities and basically any other thing that moves or changes and needs to be kept track of. The movement of physics props is calculated and tracked by the server and broadcast to clients, so they should be used sparingly otherwise they will cause lag.

Other tools
You may need to pack custom content in to your maps if you intend to distribute them, so that players will see it. We commonly recommend VIDE for manual and semi-automatic packing, and CompilePal for fully automatic packing.

When Hammer compiles a map, it locks up and you can't use it. You can use external frontends for compiling maps. CompilePal is the most-often recommended compile tool. Using an external compiler lets you continue working in Hammer as well as being able to see the compile log in real-time. An older alternative frontend is VBCT.

You may need to look inside map BSP files, or inside TF2's VPK files to extract and study assets. No mapper should be without GCFScape.

ABS' Ultimate Mapping Resource Pack is a package of additional and replacement materials, models and entity data files for Hammer. It's well worth installing.


If you find yourself thinking "How do I do this?", and a search doesn't give you the answers you need, come to the Steam chat room and we will give you direct answers.
 

Idolon

they/them
aa
Feb 7, 2008
2,105
6,106
You may need to look inside map BSP files, or inside TF2's VPK files to extract and study assets. No mapper should be without GCFScape.

Note: VIDE can do both of these things.
 

Vel0city

func_fish
aa
Dec 6, 2014
1,947
1,589
Why the hell did nobody mention: http://www.interlopers.net/errors?page=errors

An automatic compile log checker that tells you what's wrong with your map like 99.99% of the time. Saves you from posting your log here and then waiting on people to reply while in reality we copy compile logs and run it trough the same damn thing anyway because we don't know what every error means all the time (the most common ones like leaks or entities on displacements we do know about but that's because we have to deal with that ourself from time to time).

still waiting on the day we get an integrated compile log checker into the website though.