Modding 101: The Basics, Modeling Programs & Textures
Home » Guides » Modding 101: The Basics, Modeling Programs & Textures

Modding 101: The Basics, Modeling Programs & Textures

I was recently sparked by a question on the Fextralife forums of “How do modders do it?” when it comes to creating mods for video games, and not the kinds of modifications that hack and cheat, but the vibrant mods that games like Fallout 4, The Witcher 3 and Dragon Age: Inquisition receive. These types of mods have spawned thriving communities and their actions are increasingly being supported by the game developers themselves. As there is growing interest in the activity, I decided to put together a little guide and basic information tutorial on modding and how modders do their thing.

What is Modding?

“Modding” is short for “player made modification of a game file(s).”

Basic Modding Subgroups

  • Models: also called ‘meshes’ these are the shapes of the items you see in game from characters, npcs, hair, trees, animals, boxes, etc. From this point on all solid objects will be referred to mesh or meshes.
  • Textures: these are the graphics applied to the meshes
  • Scripts: tells the game engine how to display the information above
  • Effects: these are misc movement models, such as fireballs, waterfalls, etc, to create the illusion of movement in game

Meshes

A mesh is a specific item that is displayed in game that has two functions: static or moveable. A static item is a box or a tree or even a mountain, but a moveable is a character or animal.  In order for meshes to “feel” solid in game they are given what is called a “collision” box. This “box” can be any shape, but the point is to  make sure there is a contact with the environment to feel realistic. If you ever wonder why you walk through a person at times it is because the model does not have a collision box, or it is too small. In some video games we hear the term “hit box” which is really just a term for “collision.” Some models require bigger boxes, so the bigger they are, the more area there is to connect with.

Textures

Textures are your basic graphic, it shows your eyeball what you should see and what colour. Within the textures are several subgroups.

  • Diffuse map: This diffuse map are the bright R/G/B (red green blue) colours you see.
  • Normal map: this is a map that is hidden under the Diffiuse map; it tells the game where to send shadows. A graphic without a normal  map is flat
  • Mask: A mask defines which surface should be affected by which section of a material. These are either greyscale or a single “channel” such as Red, Green, Blue or Alpha. Masks are used often for character creators to give different skin and hair colours.
  • Emissive Mask: these are masks used for lights on armour, such as Mass Effect. Think of it like a little glow bug inside the texture paths. Because, really, that is what they do- glow!
  • Alpha: Alphas are part of textures used to define an area. Say you have a piece of armour but you hate the belt on it. You can open up the texture file and under the alpha properties colour over the area you want to be invisible, save it and in game that belt is “gone.” The model is still there, but not visible to the eye.

Scripts

Different games uses different scripts, which are lines of code that execute a command. Skyrim, a very mod friendly game, uses Payrus. The Dragon Age Toolset uses Python. The meatier codes for the engine are generally a variation of those scripts that modders use and C++. Depending on which game you are modding depends on what script you use. There are hundreds of tutorials out there for people to use.

Effects

Also called FX or VFX, these are what make a fireball explode or a iceball freeze. They are usually moving bits of textures that are placed inside the game to give a realistic feel.

Modeling Programs

Next we will discuss modeling programs and good choices to look for.

  • Max3DS: The bread and butter of 3D modeling. Max3DS has powerful tools and many plug-ins to work with almost every game engine.
  • Blender: Open Source supplement for Max3DS comes with a large number of plug-ins and user generated help info and scripts.
  • Milkshape: Used for Half-Life, Blockland, the Sims and Rock Raiders, is also used for other sand box games

Which Program Should I Use?

Pick one and stick with it. If you are not modeling for Milkshape specific games, download Max3DS or Blender. Whichever one you choose it is not wise to switch. The main reason for this is that Max3DS and Blender have different controls and short cuts. Once you get used to one, switching to the other might get confusing. Depending on the game you want to modify, look at the tutorials in place and check to see which one has the scripts and plug-ins you need.

Limitations

Many 3D modeling programs do not have baked-in collision boxes or moving pieces. Basic meshes are usually imported to a second program for that, such as Nifskope for Skyrim and Fallout. Before beginning any modding project make sure you have the other programs necessary.

Miscellaneous

  • Z-Brush: Z-Brush is an amazing tool for creating things like hair. While it has a free 45 day trial, the cost of the project is about $500 USD. It is mostly used by professionals, but if you want to try your hand at making a hair mesh, read everything you can before downloading the free trial.
  • Material Libraries: Some programs require Material Libraries before exporting. Many of these libraries come at a cost, some are free. Depending on the engine you are modding, most materials are applied outside of the 3D modeling program.

Textures

Next, we will discuss textures and all of their glorious nuances. There are 2 primary programs for texture work and they are as follows:

  • Photoshop
  • Gimp

So which to use? If you have Photoshop already, that works. If you are just starting you will want to download Gimp unless you feel like paying for a Photoshop license. Photoshop is a tool for professionals and Gimp is for everything else. Many tutorials for one can be applied to the other, although shortcuts will be different so expect a learning curve.

UV Maps

A UV map is how  a game projects a 2D image onto a 3 modeling surface. Look at this example:

UVMapping

The Diffuse texture is just a flat 2D image of the world. When added to the 3D sphere model it looks like a real globe.

texture

That is the image file of a man’s head for Mass Effect 3. The image gets wrapped around the head model.

Wait!? BUT HOW?

Here is a picture of one of the cupboards I did for Skyrim

texture 1

See how the checkers all look nice and even? On left hand side you can see how the image will fit on the cupboard. The green lines are the seams and shows where the lines will meet up.

texture 2

You can also see in this picture how armour will fit onto the body once it is imported into the game.

uvmap6

Most programs have built in UV mapping. In Max3DS 2017 it almost 100% automated. There is very little to do than maybe  moving a piece or two around. Whatever game you are modding, there should be a tutorial. Texture modding a game is 1% program and 99% testing. Always make backups and you will be fine.

DDS

Most textures for games are saved in a DDS format. NVidia has a DDS tools. This is installed with your Photoshop or Gimp so you can view and manipulate the file. REMEMBER: You should always select “MIPS” when exporting unless otherwise stated in a tutorial. MIPS are used by the game engine for when an object is resized. Failure to do this will result in…well, shenangians. This tool also allows you to export Normal Maps.

This primer now concludes the entries on Modding 101. Beyond specifics, this should jump start your knowledge for trying it our yourself. Since every game has their own unique bits and pieces it is a good idea to consult those guides for more of the idiosyncrasies after consulting this guide. Now get out there and have some fun in the wonderful world of modding!


More Guides

About the Author

Comments

9 responses to “Modding 101: The Basics, Modeling Programs & Textures”


  1. Variety in furniture and stuff is actually really important: what actually killed my stupidly ambitious expanded castles mod for Oblivion was “clutter fatigue”, and a major part of that was just seeing the same old stuff over and over again, even though Oblivion actually had a reasonably diverse selection of furniture and random tat.

    I’ve seldom uploaded much of my stuff, partly I’m too timid, I’m too lazy, and I object too much when it’s inevitably stolen by someone else. Most of it is just accoutrements like shoes, jewellery and hairdos anyway, but I occasionally go on for full-on pointless like this pink vault suit with ridiculously impractical shoes. Blame Namira and her pink obsession for that one!

    Pink vault suit

    Edit: turns out including an inline image was a really bad idea: there goes this month’s bandwidth allowance. 😮

  2. Oh yeah! The weighting… I think I got drunk the weekend I tried that lol (jk..mostly). I pretty much stated “never doing this again” and stuck to textures and simple models. Also, there are so many female armours out there I just gave up. But Skyrim had little to no special furniture so I made that instead :D I have been in uni for what seems like forever (yay for phds?) and I took a 3d art class so I have a uni license with Max3DS. I feel like it is cheating… but Blender is really good. I always tell people “stick what what you first tried.” I think Blender has more scripts for it, too. It does a lot more than Max in regards to games. Have you released your armour? I will download it and when I get time to play Skyrim I will wear the crap out of it!

  3. >
    I think it was the sheer volume of things to choose from that was a big part of the problem! That, and I’m quite slow to grasp the basics: once I get going I generally do okay but those first steps can find me faltering.

    The biggest pain for armour is getting the weight-painting right, which isn’t something I’ve much aptitude for at all; then Skyrim added the minimum and maximum bounds for vertices so it would adapt to different body sizes, which was also rather lacking in entertainment. Fortunately, blender has a script that can fairly accurately copy bone-weights from a donor model, and Outfit Studio does both that (though not quite with the same precision, I don’t think) and deals with pretty much every morphing situation one could think of. The only bother I’ve had lately is having to do some manual tweaking of clothes that are physics-enabled in FO4, a pastime that never starts being fun. :D

    I’ve never worked with Max3DS: isn’t that the one that requires parting with actual money? Whether it was that or something else I looked at a while back, it was commercial and required a sacrifice of quite a lot of money at that. So while Blender may be, erm, “contrary” and not have as much support for certain things, I think I’ll be sticking with it…

  4. I never did much with armour models, but I did recolour some of the in-game textures. Armour is a pain because of the bone structure to make sure it moves right in game, but I worked with statics.. it is not hard to make a box xD But yes, Skyrim has its own depth but I really love working with Max3DS. As for the Sims, I have done a few things with milkshape but not much. There are already thousands of player free mods out there :)

    Yes I believe you were :D

  5. Nice introduction to the subject. Modding kinda looks big and scary and has a steep learning curve… when you need to figure stuff out for yourself. This article is a handy step on the way to not end up having to wonder “is this actually possible?” and concluding “this is impossible.”

    I must admit I found Skyrim particularly tedious to make mods for, specifically with regard to meshes. I guess that’s what gave birth to Bodyslide/Outfit Studio which takes away much of the pain, and also made 3D modelling accessible to Fallout 4 players even without Blender managing to import and export models directly (Outfit Studio does the legwork there, and even though it’s an intermediate step it’s very much less tedious than directly exporting NIFs for Skyrim and having to faff about with… well, everything. Skyrim modellers know what I mean.)

    I still wish I’d learnt to mod Teh Sims 3. I doubt it’s any more complicated than Morrowind, Oblivion, Skyrim, Fallout 3/NV/4, even Ego Draconis (which I only did because “it must be possible”: I don’t recommend it, though changing the models is actually possible). But it was another of those things where there’s seemingly eleventy billion tools one needs to learn, in other words eleventy billion options but few actually required tools, but the knowledge to work them always eluded me.

  6. Squee! My first blog publish! Emergence you did a fantastic job of polishing it up with the graphics. Thank you!

    Edit: I did not see Fex’s post above mine o.O Thank you Fex <3 <3 <3

  7. Wow awesome article!!!

    I helped with writing for some origins mods, but I’ve never had the time to try making my own. I like how you’ve made it much more accessible by providing simple basic differentiations. Thank you!

Log in to leave a Comment

Latest from Fextralife