# Whats new and Spotlight

![A screenshot of the main menu showing the Whats New and Spotlight elements](/files/-M8eAtGTG5axCuIZwXcH)

## Tools

You will need the:

* [Titanfall VPK Tool](/titanfall2/intro/duction/tools.md)
* [VPK renamer / move (Optional)](/titanfall2/intro/duction/tools.md)

## Whats New

Up in the top right hand corner there is a UI element showing off the new elements of the game. The assets for the UI element are located in the games **rpack** files which we dont have access to, however we can remove it since the game is no longer receiving updates.

To remove the UI element you will need to unpack `englishclient_frontend.bsp.pak000_dir.vpk` and edit the file `\resource\ui\menus\panels\mainmenu.res`.

Find the `WhatsNew` section in the file:

```
WhatsNew
    {
        ControlName				RuiPanel
        ypos					380
        wide					740
        tall					125
        rui                     "ui/whats_new.rpak"
        visible					1

        pin_to_sibling			PinFrame
        pin_corner_to_sibling	TOP_RIGHT
        pin_to_sibling_corner	TOP_RIGHT
    }
```

Set visible to 0:

```
visible					0
```

You can now repack your VPK and you will no longer see the **Whats New** UI element.

## Spotlight

On the right side of the screen you will 3 UI elements grouped together:

* News - Frontier News Network: Operation Endeavor
* Rendy Gaming fires away in his Kraber G100 Montage.
* Check out the latest weapon skins

To remove these elements you will need to unpack `englishclient_frontend.bsp.pak000_dir.vpk` and edit the file `\resource\ui\menus\panels\spotlight.res`.

There are 3 sections in this file:

* `SpotlightLarge`
* `SpotlightSmall0`
* `SpotlightSmall1`

To hide each section set `visible` to 0

```
visible					0
```

You can now repack your VPK and you will no longer see the **Spotlight** elements.

![A screenshot of the main menu with both Whats New and Spotlight removed](/files/-M8eFjLEsws_GjzNRwG0)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://noskill.gitbook.io/titanfall2/modding/user-interface/menus/whats-new-and-spotlight.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
