Vortex shield color

Preparation

In this guide you will have to edit .nut files. You can use text editor for that such as Atom, NotePad++, VIM and many other ones would work fine.

Locate your game folder and find this folder if you are on Origin:

Origin Games\Titanfall2\vpk\

Or this folder if you are on Steam:

Steam\steamapps\common\Titanfall2\vpk\

Copy these file and paste them in a backup folder somewhere else:

  • englishclient_mp_common.bsp.pak000_dir.vpk

  • client_mp_common.bsp.pak000_000.vpk

You will need the Titanfall VPK Tool, the program which will allow you to open and repack Titanfall VPK files. Here

Unpacking

Now that these files have been backed up and everything installed. Navigate to your game folder and open this file:

Origin Games\Titanfall2\vpk\englishclient_mp_common.bsp.pak000_dir.vpk

How to extract VPK's properly?

Editing

To edit the vortex shield color you need to go this directory

scripts\vscripts\weapons\

Open the file _vortex.nut with your text editor as recommended above. In this file find the following code block

const VORTEX_SPHERE_COLOR_CHARGE_FULL               = <115, 247, 255>   // blue
const VORTEX_SPHERE_COLOR_CHARGE_MED                = <200, 128, 80>    // orange
const VORTEX_SPHERE_COLOR_CHARGE_EMPTY              = <200, 80, 80>     // red
const VORTEX_SPHERE_COLOR_PAS_ION_VORTEX            = <115, 174, 255>   // blue

The color code is rgb 0 – 255. The value FULL, MED and EMPTY are the different energy states of Ion. The last one (PAS_ION_VORTEX) is for amped vortex shield tier, if you are using this tier on your Ion, this line will overwrite FULL.

It is not recommend you use pure color (pure pink is 255 0 255 for example) they are too bright and would be difficult to see through. It is recommended to reduce the value between 170 to 200 instead of 255. You can change the different energy states to the same color, but you won’t know the amount of energy on an enemy Ion vortex shield anymore. I personally use pink, purple then original red.

Example

Repacking

How to repack VPK files properly?

After following step by step the previous link

Rename pak000_000.vpk to client_mp_common.bsp.pak000_000.vpk

Rename pak000_dir.vpk to englishclient_mp_common.bsp.pak000_dir.vpk

Place both of the renamed files back into your game directory and then launch Titanfall 2. You should be able to see your changes!

Last updated