# Gamemode Not Detected

## <mark style="color:red;">▸Force Gamemode</mark>

If your console reads *<mark style="color:orange;">**Gamemode Detected: Unknown**</mark>*; this means that you are running a gamemode not immediately detected by Vliss.

![](/files/-MNT9NR4efKbjnIg6A8_)

* Locate: <mark style="color:orange;">**`addons\vliss\lua\vliss\sh\gamemodes\`**</mark>
* **Find** and **open** the gamemode file similar to your gamemode:
  * Prophunt based: <mark style="color:green;">**`sh_cfg_gm_prophunt.lua`**</mark>
  * DarkRP based: <mark style="color:green;">**`sh_cfg_gm_darkrp.lua`**</mark>
* Locate the **`Enabled`** setting, typically at the top of the config:

{% tabs %}
{% tab title="DarkRP" %}

```lua
-- OPEN: addons\vliss\lua\vliss\sh\gamemodes\sh_cfg_gm_darkrp.lua

rp.Enabled = true
```

{% endtab %}

{% tab title="Deathrun" %}

```lua
-- OPEN: addons\vliss\lua\vliss\sh\gamemodes\sh_cfg_gm_deathrun.lua

deathrun.Enabled = true
```

{% endtab %}

{% tab title="Melon Bomber" %}

```lua
-- OPEN: addons\vliss\lua\vliss\sh\gamemodes\sh_cfg_gm_melonbomber.lua

melon.Enabled = true
```

{% endtab %}

{% tab title="Murder" %}

```lua
-- OPEN: addons\vliss\lua\vliss\sh\gamemodes\sh_cfg_gm_murder.lua

murder.Enabled = true
```

{% endtab %}

{% tab title="Prophunt" %}

```lua
-- OPEN: addons\vliss\lua\vliss\sh\gamemodes\sh_cfg_gm_prophunt.lua

prophunt.Enabled = true
```

{% endtab %}

{% tab title="Sandbox" %}

```lua
-- OPEN: addons\vliss\lua\vliss\sh\gamemodes\sh_cfg_gm_sandbox.lua

sandbox.Enabled = true
```

{% endtab %}

{% tab title="Terror Town" %}

```lua
-- OPEN: addons\vliss\lua\vliss\sh\gamemodes\sh_cfg_gm_ttt.lua

ttt.Enabled = true
```

{% endtab %}

{% tab title="Zombie Survival" %}

```lua
-- OPEN: addons\vliss\lua\vliss\sh\gamemodes\sh_cfg_gm_zombiesurvival.lua

zombie.Enabled = true
```

{% endtab %}
{% endtabs %}

* Change **`Enabled`** setting to **true**
* Save the config file and restart your server
* View server console -- check if Vliss detects the gamemode now:

![](/files/-MNT9J3ODGD_HeIRg6QW)

####

## <mark style="color:red;">▸Add Gamemode Support</mark>

If you wish to add your gamemode to Vliss for overall support; please follow the [**New Gamemodes**](broken://pages/-MNTA73m5yJuBL7wmqp8) tutorial in the Configuration section.


---

# 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://vliss.rlib.io/faq/gamemode-not-detected.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.
