Official Map Modding Tutorial (Part 1) : Setting up a dlc pack! - 5mods/tutorials GitHub Wiki
Background Info: Hello, my name is Skylumz, I have been making map mods for about 3 months now and have learned alot within that time. I get a lot of questions on map modding, so I decided to make this tutorial to refer anyone to. I also want more people to get into GTA V map modding. Anyways, hope you enjoy the tutorial and if I didn't address anything please comment below. This tutorial is not for beginners, you need to know how to download and install DLC packs , script mods, and navigate OpenIV.
Things I will be covering:
- Completely setting up a DLC pack for map modding.
- Taking a model and converting it to *.ydr from scratch, with embedded collisions and textures.
- Explaining all file types that have to do with map modding (*.ymap, *.ytyp, *.ymf, etc)
- Spawning the custom .ydr that you made with a GIMS EVO
Programs we will be using:
- Blender (or your preferred modeling program) https://www.blender.org/download/
- Codewalker https://www.gta5-mods.com/tools/codewalker-gtav-interactive-3d-map
- Gims EVO https://www.gta5-mods.com/tools/gims-evo-with-gta-v-support
- 3DS Max https://www.autodesk.com/education/free-software/3ds-max
- Create YTYP Generator https://www.gta5-mods.com/tools/ytyp-generator-using-odrs
- Open IV https://www.gta5-mods.com/tools/openiv
Explaining the file types:
-
RPF: This file contains all file types that GTA V uses. The most important thing to know about this file is that it contains all your map mods content.
-
YMAP: The .ymap contains a bunch of information related to a entity. Like its coordinates, and more but the most important thing to know is that the .ymap will define where the object is placed in GTA V's world.
-
YTYP: The .ytyp contains a list of entity's depending on how many are specified in it, that tells GTA V what textures to define a entity, and if the collision is embedded in the entity, etc. Now the most important thing to know is the file defines all info regarding a specific entity that could be spawned.
-
YMF: This file enables .ymap files inside a .rpf. The most important thing to know is that .ymaps will not work without this.
-
YDR: This file contains all information regarding a single drawable(entity), like the objects textures(if embedded), and the LODs. It can only contain a max of 4 LODs. The most important thing to know about this file is that it contains everything regarding a specific drawable.
-
YDD: This file is the basically a bunch of .ydrs into one. It is a drawbable dictionary. The most important thing to know is that it is a bunch of .ydrs crammed into one file.
-
YFT: This file has a drawable in it most likely a vehicle. I dont know much about it as of now.
-
YBN: This file contains bounds information, aka collision. The most important thing to know about this file is that it is for collision.
-
YTD: This is a texture dictionary. It basically contains a bunch of textures that a .ydr can access. The most important thing to know about this file is that if a .ydr doesnt contain the textures embedded then it most likely uses this to access textures.
Now that I have explained the file types, you can always look back and look through them if you don't understand one. I hope I explained them well enough.
Setting up a DLC pack for map modding:
Step One: Open OpenIV and locate your dlcpacks folder should be : YourGTADirectory\mods\update\x64\dlcpacks
Step Two: Go into edit mode and create a new folder, this folder will be the DLC's name so make it something meaningful towards the specific map mod. For now I will be using EXAMPLEDLC for this tutorial. Should look something like this:
Step Three: Double click the folder you just created and click Ctrl + N to create a new .rpf archive. You can also right click > new > RPF Archive (.rpf version 7). Both ways work choose, what suits you. Next you will see a dialog popup asking for the .rpf name it absolutley has to be dlc.rpf. Like this:
Once finished:
Go inside that dlc.rpf you just created and you are gonna want to make a folder named x64 you can do this with Ctrl + D or Right Click > New > Folder or Clicking this icon:
Now go inside of the x64 folder you just created and make another folder named Levels and inside that another folder named gta5 inside of that create another .rpf and name it anything you want, for my own naming strategy I usually name it what it has to do with that portion of the mod but for this example we can just name it models.rpf. Anyways by the time you are done this should be the DLC packs structure:
Step Four: Now its time to add the content.xml and the setup2.xml. You can download the example ones from here : https://ufile.io/20v3b you will get a content.xml and setup2.xml all you need to do is place both of them inside the dlc.rpf (beside the x64 folder) like this:
Then Right Click the content.xml while in edit mode and click edit and go to the search tab and search "DLCEXAMPLE" now replace every single one the words that say "DLCEXAMPLE" and "YOURDLCPACKNAME"with whatever you named the dlc pack in step two. For example :
Now once you have replaced all them lines you can open up the setup2.xml and do the same. For example:
There are more than that so be sure to replace ALL "DLCEXAMPLE" with your dlc pack name choosen in step two.
Conclusion: You have just finished making your first map modding dlc pack. If you plan on making dlc packs alot then get used to making this pack its fairly simple.
Extra notes:
- if you named the models.rpf something else you need to replace that in the content.xml for example if you named it "props.rpf" you would have to change these lines:
- I will go into more detail but when you add in .ytyps then you have to enable them in the content.xml just like the .rpf file. I will explain alot better but for example:
- I made a quick example of how all these files work together which you can view here:
- I wanted to explain how dlc packs work so if you run into problems you can change them manually. If you want to skip making the content.xml and setup2.xml then use this program I made: https://www.gta5-mods.com/tools/dlc-meta-generator-content-xml-and-setup2-xml Read the instructions on how to use!
IF YOU NEED HELP BEST WAY TO CONTACT ME IS THROUGH DISCORD YOU CAN JOIN MY MAP MODDING SERVER HERE : https://discord.gg/7xbYQaN Your always welcome dont be afraid to join!!
PART 2: https://forums.gta5-mods.com/topic/17815/official-map-modding-tutorial-part-2-making-a-custom-ydr