====== Hedgehog's Kinda Expanded Quick Shitty Notes for Making Basic Followers ====== This tutorial is just my old rentry pasta, formatted and a little revised for this wiki. Original: https://rentry.co/hedg1 This is not a grand learning tutorial. Just my quick notes for myself, now edited and a bit explained for understanding CK and its elements we will use. Hope it helps. Based from [[https://www.youtube.com/watch?v=3I1nvXOb3T4|this ole' video tutorial]], and expanded for missing parts. ===== Basic things we need ===== * **[[https://www.nexusmods.com/skyrimspecialedition/mods/19080|RM]]**: FOR THE LOVE OF ALL, USE RM. I know ECE had its power time and it was good, but RM is far better now. Especially with EFM, HPH, overlays and all those sculpt export features. * **CK**: D'uh. Always save regularly, for CK is prone to crash often. * **Our character's color informations**: hair color, skin color. You can just screenshot your RGB values. DON'T USE ALPHA (transparency) ON SKIN COLOR, CK doesn't have that option. * **Our character's mesh and texture informations**: their weight, which hair they use, which brow they use, which eye color they use, which beard they use, which scar they use. If you don't know how to find your custom headparts, you can check your mod in xEdit. It will have the same name in RM notification. Also, more importantly, you'll need your custom body meshes (if you use any, if vanilla you don't have to) and custom body textures (again, if you use any). * **If you are using HPH, all of its parts**: head mesh and its TRIs. If you didn't sculpt your vanilla-meshed brows and are using HPH brows, include its mesh and TRIs as well. Same goes for beards and scars. All of them are in "meshes\KL\High Poly Head". * **Our character's RM overlay informations**: which "tattoos" they use. Face paints are handled via Racemenu (unless you don't use that newer RM face overlay tab for glowing tattoos, then you'll have a real work). Body paints, I'll tell later. * **Our character head mesh export in RM**. You can get it on sculpt tab of RM. THIS IS IMPORTANT, FOR IT CONTAINS ALL OF YOUR CHARACTER'S FACE. * **[[https://github.com/niftools/nifskope/releases|NifSkope]]**: An amazing tool, which you will use many times. * **[[https://www.nexusmods.com/skyrim/mods/40494/|NPC Nif Merge]]**: //It ain't no good, but it's the best we have had. It knows it ain't right, and it'll fight its whole life... to prove that it was right.// Crucial tool. Works clunky at times but it still does what it does, and it does it good. * **[[https://www.nexusmods.com/skyrimspecialedition/mods/4089|SSE Nif Optimizer]]**: If you're on SE, you probably know this. | **TRIVIA:** TRIs are the files which controls your character's head parts, for emotes. Without compatible TRIs for your meshes, NPC's face parts will clip with head itself. You can see it especially on males with beards. | After collecting everything, you need to make your own follower folder and throw it to your mod manager as a mod. For MO2, it's "mods" folder. For Vortex, just install it like a mod. | **How to make a follower folder, though?**\\ Most follower folders contain 2 main child folder: "meshes/put/custom/path/here" and "textures/put/custom/path/here". People generally put them in "meshes~textures/actors/character/followername". | Alright, **let's get to work!** ===== 1) Preparing sculpts ===== **Export your character through sculpt menu of RaceMenu.** This will create a head mesh and a facetint texture in "SKSE\Plugins\CharGen". Mesh contains your character's facial structure, tint contains your character's facial paints like makeup or RM overlays. ===== 2) Choosing right plugins ===== **Open CK** and choose Skyrim.bsa and Update.bsa for working. Or better, choose every base ESM and all three official DLCs. Or best (which I do), all those and your custom asset mods (HPH and hair mod, especially). Searching everything on KS Hairdos, HPH and your armor (or creating everything from scratch) can be a real pain, and this helps. Don't make anything active, CK won't let you make base ESMs active plugins anyway. ===== 3) Texturesets ===== **On CK, you need to make your character's body-head-eye-brow texturesets first.** Go to TextureSet section in the left pane of Object Window. You'll need to create these texturesets for your custom parts: * **Body and hand texturesets**. They contain a diffuse (that normal-looking one, defines colors), a normalmap (msn one, defines edges), a specular (s one, defines "wetness") and a subsurface tint (sk one, defines brightness on darkness AFAIK). You don't have to look for feet textures, for they are in body texture itself. Just duplicate a SkinBodyFemale/Male and SkinHandsFemale/Male and replace their paths with your textures'. * **Eye textures**. They contain a diffuse and some other ones. The most important thing is diffuse, but take a look to your eye mods if you want to see the full effect. Anyway: Duplicate a EyesMaleHuman textureset (don't worry they work also on females) and replace texturepaths. * **Brow textures**. They contain a diffuse and a normalmap. Generally people use Hvergelmir Brows, so I'll remind that you don't forget its normalmap. Same drill, duplicate a brow textureset and replace. * **Scar textures**. //Optional//. If you have a custom scar texture or a complete custom scar, you will want to include it as well. They go as "HeadMarksSomethinggoeshere" generally. Same drill. * //**Don't forget to rename duplicate forms**//. This goes for every custom forms we'll make. I generally put a 0 at the start of them, for finding them easily. It makes them look on upper places in the list. A sample name is: "00ClaraEyesTextures". | **TRIVIA: What's a textureset?**\\ If you're familiar with modding, you'll know every mesh use some textures for coloring and reflections. Normally texture info is embedded in mesh itself. Skyrim has a way to use alternate textures on meshes, and it controls this with "texturesets".\\ As a far more trivial note, we added body texturesets because we don't want to hassle with body meshes in NifSkope every time we update them. You'll understand as you read. |