Nohud Wiki

Creation of Hudtoggle Mods with 3dMigoto

A quick tutorial for making your own hudtoggle mods. I'm not a programmer so will write in simple and bad English.

1. I recommend downloading all versions of 3DMigoto , sometimes older one works better.

2. Open, for example, "3Dmigoto-1.3.15", then "x64" folder. Copy all files to a game folder where *exe is located. (pic.1)

Pic.1

Pic.1

3. Open "d3dx.ini", find HUNTING=0 and change it to 1. Launch the game. If you see green text, everything is fine!




Finding the shaders

4. Time to find the shaders. It can be one, but mostly from 2 to 10. Slowly press "NUM4" or "NUM5" and when the hud will disappear press "NUM6" to fix it. You found a required shader which you need to hide.

Also you can press "Num1", "Num2" and "Num3" respectively




Editing

5. Leave the game, and go to the game folder. Open SHADOW FIXES folder, then a *txt file, for example "2e8a3616c622f04c-ps_replace"

6. Download my template from here. Or you can copy it from here:

float4 params = IniParams.Load(0);
  if (params.x == 0)
  {
   o0 = 0;
   o1 = 0;
   o2 = 0;
   o3 = 0;
   o4 = 0;
   o5 = 0;
   o6 = 0;
   o7 = 0;
   o8 = 0;
   return;
  } else {

7. From the template copy these values, and put it below "float4 fDest;"

PAY ATTENTION TO THE NUMBERS, in this case they are o0, o2 and o3

After "return;" add the symbol "}". (Pic.2)

2

Pic.2

Example:

3

Pic.3 Example

8. Open "d3dx.ini", find HUNTING=1 and change it to 0.




Key binding

9. Now you need to bind a key. Open "d3dx.ini", and make changes like I did:

4

Pic.4

Pic 5

Pic.5

10. That`s all! In-game press "CAPS LOCK" to toggle the hud.

You can bind different keys, for example KEY=H, or KEY=F1


If you have any questions, write here in comments!