HumanitZ Beginner’s Modding Guide

This is my unofficial modding guide for HumanitZ, as of the latest game update. During the course of this detailed text guide, you will learn how to make various types of mods, according to what I have learned so far! This guide will be updated as I learn more about modding this game, so stay tuned for updates!

入門

To start modding HumanitZ, you will need the following tools and software:

Unreal Engine 4.27x (好ましい 4.27.2)
ダウンロードリンク: https://www.unrealengine.com/en-US/download

UModel
ダウンロードリンク: https://www.gildor.org/en/projects/umodel#files

Unrealpak
ダウンロードリンク: https://www.fluffyquack.com/tools/

HumanitZ Modding Toolkit
ダウンロードリンク: https://www.nexusmods.com/humanitz/mods/2

I recommend you put all of these tools in a folder, so you can access them in a quicker, more organized manner. I have the game installed in my D: ドライブ, so I put all the tools under a folder namedHumanitZ Modding“.

基礎

There are a few things you must know about modding Unreal Engine games, and more specifically HumanitZ, before you get to making the actual modding part. Let’s go over them in detail!

We cannot add new files

現在, we are unable to add new, custom files to the game as part of a mod.

This means that no matter what mod you are working on, the only way to have your mod work is for each individual file to overwrite another file that exists in the game.

Even the file structure must be the same! それについては後で詳しく説明します.

Unpacking and Packing

You will have to do a lot of both to get a mod going. This is why we will need both UModel, and the Unreal Engine itself.

We need to unpack the game’s base files, and pack our custom mod files.

Adhering to the Rules

I cannot overstate this. Your mod will not work if you do not follow the file structure of the game to a T. I mean it. Pay extreme attention to this! 例えば, if you unpack a file that is found in:

  • […]\HumanitZ\TSSGame\Content\VehicleVarietyPack\Textures

On Unreal Engine, your file must be in:

  • […]\YourProjectFolder\Content\VehicleVarietyPack\Textures

Setting up your Unreal Project

Since the game is made in Unreal, your mod will also most likely require an Unreal project so that compatibility is at its best state.

初め, create your Unreal Project. Remember that file structure must remain the same! など, to make things easier, we will also be adhering to this when naming the project itself.

Creating the Project

Let’s create a project calledTSSGame“. That’s the name of the project on the developers’ 側.

When creating your project, 選択する “ゲーム” 下 “New Project Categories“. Like so!

次, select either aBlanktemplate if you prefer organization and have some experience, また, if you are new or don’t mind extra files, I recommend either Third Person また Top Down.

Remember to name the projectTSSGame“! これは重要.

Configuring the Project

大丈夫! You have successfully created your Unreal Engine project… 今何?

The next step is to do some basic configuration! There’s just one little thing you want to change, so don’t panic just yet!

Open your project, and at the center of the top of the screen, you will see a big gear button called設定“. Click that.

次, 選択する “Project Settings“. A new window will popup. You will find a scrollable list of items on the left.

Look for the huge header saying計画“, and look for a smaller category calledPackaging“. クリックして.

Once in thePackaging” カテゴリー, scroll all the way to the bottom until you find a tab called計画“.

You are looking for the second option from top to bottom. It is a dropdown option calledBuild Configuration“.

クリックして, そして選択 “Shipping“. この後, simply close the window, and your project is good to go!

Unpacking the Game files

素晴らしい. Keep your Unreal Project open. 今何?

良い, we need the files you want to modify, 覚えて?

I hope you also remember I mentioned we have to unpack them. So how do we do that? Find out below!

The Methods

がある 2 methods to unpack game files. 方法 #1 will unpack the ENTIRE game in a folder. That should take about ~32.5GB worth of disk space.

If you don’t have enough space, or don’t want to bother unpacking every new update and such, just head to 方法 #2!

Creating your folder

Remember that folder I recommended you create, to keep all the tools and such? Create a new folder inside it calledUnpacked Filesor whatever you want.

The name is up to you, 本当. This is where we will store the unpackaged game files!

方法 #1Unpacking Everything

For this method, thankfullyZGal88 has got us covered! They have developed the amazing Modding Toolkit, which allows you to easily unpack the entire game! Wonderful!

After installing the toolkit, それを開く, and you will be greeted with a screen that asks for aソース“, そして “Destination“. Source must be this exact directory:

  • […]\HumanitZ\TSSGame\Content\Paks

Destination will be whatever folder you want to store the unpacked files. After selecting both directories, クリック “始めるand wait for completion!

それでおしまい! After the process is finished, あなたは持っています 全て the game files unpacked in a single folder.

方法 #2Unpacking Specific Files

For this method, you will need that UModel tool I mentioned earlier!

After installing it, それを開く, and you will be greated with a screen that asks for aPath to game files“.

はい, it will also open a prompt / CMD window. Ignore that. It’s just for showing logs of what’s going on!

Set the path to game files to be this exact directory:

  • […]\HumanitZ\TSSGame\Content\Paks

AES Encryption Key

You will get a warning screen that mentions the app has found an encrypted file, and you will require an AES encryption key to view it.

問題ない! I have it right here for you, just paste this and hitOk“: 0x321166CACD1E2BBEAC9794AAF468DE277001D2EF8F74A8D6B3CC6EDFE87945CA

Exploring the Game Files

You will now be greeted with a screen that contains ALL the game files, ready for unpacking.

It is here that you will select which folder or files you want to unpack.

Please tidy up the mess of the file hierarchy by closing the submenus of each folder so that it looks like this:

You want to head for the ゲーム フォルダ. Want to know something about this folderしないでください read it asゲーム“. That’s just another name forコンテンツ“.

それは正しい. の “ゲームfolder is actually theコンテンツfolder in both your game directory, and your unreal engine project directory!

To preview an asset, simply double click it. The app will then attempt to show you a preview of the asset. This works for meshes材料テクスチャ と animations.

Other stuff isn’t recognized, 不幸にも. In the screenshot below I have found the mesh の white box truck!

Once you have found a file and clicked to preview it, you will be prompted by the app to select the version of the package, because it couldn’t find it on its own.

That’s normal. Select version 4.27 at the very bottom of the list. Like so:

Would you look at that! We are now previewing the truck mesh! 大丈夫, that’s what we want right there! しかし… how to go back?

That’s easy. On the 左上, クリック “ファイル“, その後 “Open Package“. That will return to the window we were before, where you can select which files to handle.

Once you have isolated a file, or many files, or even a folder, just right click it and selectExport“.

You will be prompted to select a folder to put the extracted files in. それでおしまい! That’s how you unpack specific things instead of everything!

ついに… 改造!

大丈夫. Let’s take a little break and review what we have done so far, しましょうか?

You have installed all the necessary tools to mod the game, and made a ディレクトリ where you placed all the tools.

Another directory you made was one to put all the files you have unpackaged の. Then you either unpackaged the entire game, or just a few specific files.

If you decided to use 方法 #1 to unpack the game files, and you wish to preview files to know what the hell you are looking at, you can follow 方法 #2, but open the unpackaged folder instead of the game folder. This means you will directly skip the step of the AES key.

Everything else remains pretty much the same!

ともかく… You have also made an Unreal Project, where you will be working with your mods.

少なくとも最後のではなく, you have gone up these messages and read THE BASICS また 👀

そう, how do I actually mod nowWELL. It depends.

This guide is already big enough, so let’s split this up into different guides now, しましょうか?

心配しないで. It’ll just be for a moment. Each separateminiguide will explain how to mod a specific part of the game. Once you have reached the Packaging section of said guide, return here!

Modifying Materials (Reskins, 等)

Check out this guide.

はい. I said return reaching the last section of the specific guide for what you want to mod!

Packaging your Mod

大丈夫. You have made your mod, you have cooked your files, you have found the folder where they are located.

Locate your files there, and copy them over to the directory where you put Unrealpak. 私の場合, I pasted them here:

  • D:\HumanitZ Modding\Tools\Unrealpak

After doing that, I will remind you once more about following file structure to a T. 今. The original .pak file of HumanitZ, the one that contains all the files of the game, is called TSSGame-WindowsNoEditor. 覚えておいてください.

Inside your Unrealpak folder, create a new folder called TSSGame-WindowsNoEditor.

追加 _P to it. This basically tells Unreal Engine to prioritize loading this directory.

The end result should be a folder namedTSSGame-WindowsNoEditor_P, located in the directory:

  • […]\Unrealpak\TSSGame-WindowsNoEditor_P

Open the folder you have just created, and create another folder inside it, called the project name.

That is a folder called TSSGame.

Open this new folder, and make another folder, called Content. If you have been paying attention to the guide, you will notice a pattern here.

本質的に, we are copying the same file structure as the developers have on their end! Neat, は?

Inside the Content folder, place your cooked files. 私たちの場合には, it would be our VehicleVarietyPack folder. Make sure the directory is as follows:

  • TSSGame-WindowsNoEditor_P
    • TSSGame
      • コンテンツ
        • 材料
          • BoxTruck
          • M_BoxTruck_Body.uasset
          • M_BoxTruck_Body.uexp
        • テクスチャ
          • BoxTruck
          • TX_Truck_Box_Diffuse.uasset
          • TX_Truck_Box_Diffuse.uexp

Now return to your Unrealpak folder. Click on your TSSGame-WindowsNoEditor_P, and gently drag it over to UnrealPak-With-Compression.bat.

A prompt / cmd window will appear, and it will convert your folder into a .pak file! Close the prompt.

Now your mod is ready! Yaay! Simply head to where the original .pak file of the game is located. That would be:

  • […]\HumanitZ\TSSGame\Content\Paks

And paste your TSSGame-WindowsNoEditor_P そこにファイルします! お願いします rename the file to whatever you want, but remember to keep the _P 最後に!

それでおしまい! Boot the game and enjoy your mod! 🥳 💖

このガイドについて ヒューマニッツ によって書かれた Braven. 原文はこちらからご覧いただけます リンク. このガイドに関してご不明な点がございましたら, お気軽にお問い合わせください ここ.

著者について