Skip to content

Commit

Permalink
GitBook: [master] 6 pages and 3 assets modified
Browse files Browse the repository at this point in the history
  • Loading branch information
Wanty5883 authored and gitbook-bot committed Nov 6, 2018
1 parent 316e8a0 commit c5a3b74
Show file tree
Hide file tree
Showing 9 changed files with 409 additions and 1 deletion.
Binary file added .gitbook/assets/crosshair1.PNG
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .gitbook/assets/crosshair2.PNG
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .gitbook/assets/crosshair3.PNG
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -10,7 +10,7 @@ Track wiki update on NoSkill Community Discord server where news are posted soon
Please send me a message through the NS Discord server if you notice anything wrong in the wiki.
You can reach me via contact details.

ᵗᵒᵖ ᵗʸᵖᵒ ᵃⁿᵈ ᶜᵒⁿᵗʳᶦᵇᵘᵗᵒʳ ʷᶦˡˡ ᵍᵉᵗ ᵃ ˡᶦᵗᵗˡᵉ ʳᵉʷᵃʳᵈ
ᵗᵒᵖ ᵗʸᵖᵒ ʰᵘⁿᵗᵉʳ ᵃⁿᵈ ᶜᵒⁿᵗʳᶦᵇᵘᵗᵒʳ ʷᶦˡˡ ᵍᵉᵗ ᵃ ˡᶦᵗᵗˡᵉ ʳᵉʷᵃʳᵈ

## Modding

Expand Down
3 changes: 3 additions & 0 deletions SUMMARY.md
Expand Up @@ -9,6 +9,9 @@

## Information

* [Modding tools](information/modding-tools.md)
* [Weapon config info](information/weapon-config-info.md)

## Texture & Color

## Models
Expand Down
3 changes: 3 additions & 0 deletions how-to-start-modding/1.-modding-introduction.md
Expand Up @@ -25,5 +25,8 @@ Just no.. Spend 5 more minutes reading you will find what you are looking for.

## First step & 1/2

As a side note, in this wiki I will refer to some tools to do certain process. Check out "[Modding tools](https://wanty5883.gitbook.io/titanfall2/information/modding-tools)" page. In the different guide I link this page when I talk about tools anyway.


It's now time to move on second part ! Just follow the numbers in " How to start modding ?" category.

39 changes: 39 additions & 0 deletions how-to-start-modding/2.-how-to-backup-extract-and-repack.md
Expand Up @@ -20,5 +20,44 @@ Once you have created this folder I would recommend to create a subfolder called
C:\Users\YourSessionName\Documents\Titanfall 2 Modding\backup
```

Open the Titanfall VPK Tool and press `CTRL+O`. Navigate to your game folder and open the right file \(based on the guide you are reading\). Once you loaded the VPK in the tool, click on the menu icon called _`Extract All`_. I personally put thoose files in a folder with the same name as the extracted VPK, way easier to manage when you extract files from different VPK's.

After the extraction is complete, open the folder where you extracted your files and delete the _`extracted_logs`_ folder.

**Only open VPK files from the game directory. If you try to open VPK files from your backup folder, this will not work !**

## **How to repack VPK files properly ?**

Open the Titanfall VPK Tool and you have to open the repacker tool, you have 2 way to do that, click on the _`Repack VPK`_ icon, or go in _`Tools > Repacker`_. Once the tool opened, give as first directory your extracted folder

> e.g. C:\Users\YourSessionName\Documents\Titanfall\_2\_modding\Extracted\englishclient\_mp\_common.bsp.pak000\_dir.vpk
Then the second directory to give is your ouput, mean where repack file will go. I would recommend that to be simple

> C:\Users\YourSessionName\Documents\Titanfall 2 modding\Repack\
Leave the VPK file name as is, and then click _`Build VPK`_. Once the PVK file have been built, navigate to their location. You will find two files named _`pak000_000.vpk`_ _`pack000_dir.vpk`_. Before moving thoose 2 files into your game directory, they have to be renamed. In each guide, you have to backup 2 files, their name have to be pasted on the 2 new files. You have to consider _`_dir`_ in the name, that would indicate you which file get the right name. \(Yeah I know, wreid. Let me show you an example !\)

**e.g.**

Rename pak000\_000.vpk _to_ **client\_mp\_common.bsp.pak000\_000.vpk**

Rename pak000\_dir.vpk _to_ **englishclient\_mp\_common.bsp.pak000\_dir.vpk**

## **VPK rename / move batch script**

\*\*\*\*

Bored of renaming / moving VPK files back to game directory ? There is a little batch script you can use !

```text
ren "pak000_000.vpk" "client_mp_common.bsp.pak000_000.vpk"
ren "pak000_dir.vpk" "englishclient_mp_common.bsp.pak000_dir.vpk"
move "client_mp_common.bsp.pak000_000.vpk" "OriginGame\Titanfall2\vpk\client_mp_common.bsp.pak000_000.vpk"
move "englishclient_mp_common.bsp.pak000_dir.vpk" "OriginGame\Titanfall2\vpk\englishclient_mp_common.bsp.pak000_dir.vpk"
```

That's the script for _`englishclient_mp_common.bsp.pak000_dir.vpk`_, it can be adapted to any other VPK you edit quite often. **Don't forget to add correctly the game directory by replacing**_`OriginGame`_ with e.g.

> C:\ProgramFile\Origin\Titanfall2\vpk\
35 changes: 35 additions & 0 deletions information/modding-tools.md
@@ -0,0 +1,35 @@
---
description: List of tools used in some Titanfall 2 modding process
---

# Modding tools

Here is a list of the third party software to use for modding Titanfall 2.

## Titanfall files

* Titanfall VPK Tool - [Download](https://dev.cra0kalo.com/?p=137)
* VPK renamer / move - [Info here](https://github.com/Wanty5883/Titanfall2/wiki/General-Info#vpk-renamer--move)
* Titanfall 2 weapon renamer - [Download](https://bitbucket.org/lunderdeamon/tf2renamer)

## Graphics / animation / color

* Paint.net - [Download](https://www.getpaint.net/)
* [Gradient Mapping plug-in](https://forums.getpaint.net/topic/6265-gradient-mapping/)
* [VTF plug-in](http://nemesis.thewavelength.net/index.php?p=50)
* Source VMT Color - [Download](https://dev.cra0kalo.com/?p=155)
* [RGB Tool converter](http://hewmc.blogspot.fr/2012/12/rgb-to-percentage-converter.html)
* [GIF splitter](https://ezgif.com/split)

### VTF & VMT

* VTFEdit - [Download](http://nemesis.thewavelength.net/index.php?p=41)
* VTFVer - [Download](http://cra0kalo.com/public/VTFVer.zip) _not needed anymore, VTFEdit support v7.5_
* [VTF Shell](https://www.wunderboy.org/valve-hl2source-sdk-tools/#vtf_shell) - Recommended

## 3D Model

* Blender - [Download](https://www.blender.org/)
* Blender Source Tool - [Download & info](https://developer.valvesoftware.com/wiki/Blender_Source_Tools)
* Crowbar - [Download & info](http://steamcommunity.com/groups/CrowbarTool)

0 comments on commit c5a3b74

Please sign in to comment.