Vliss
Browse AddonsDownload RLIB
v1.x
v1.x
  • Introduction
  • Showcase
  • FAQ
    • ◾Addon Won't Show
    • ◾Gamemode Not Detected
    • ◾Incompatible Addons
    • ◼️Configuring Script
    • ◾Modified Script
    • ◾Refunds
    • ◾Script Errors
    • ◾When Are Updates?
  • ❱ Setup
    • ◾Install
    • ◾Workshop
    • ◾Gamemodes
  • ❱ Configuration
  • ◾Env
  • ◾Fonts
  • ◾Languages
  • ◾Settings
  • ❱ First Use
    • ◾Binds
  • ❱ Developers
  • ❱ Internal
    • ◾Web Demo
Powered by GitBook
On this page
  • ▸Force Gamemode
  • ▸Add Gamemode Support
  1. FAQ

Gamemode Not Detected

PreviousAddon Won't ShowNextIncompatible Addons

Last updated 2 years ago

▸Force Gamemode

If your console reads Gamemode Detected: Unknown; this means that you are running a gamemode not immediately detected by Vliss.

  • Locate: addons\vliss\lua\vliss\sh\gamemodes\

  • Find and open the gamemode file similar to your gamemode:

    • Prophunt based: sh_cfg_gm_prophunt.lua

    • DarkRP based: sh_cfg_gm_darkrp.lua

  • Locate the Enabled setting, typically at the top of the config:

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

rp.Enabled = true
-- OPEN: addons\vliss\lua\vliss\sh\gamemodes\sh_cfg_gm_deathrun.lua

deathrun.Enabled = true
-- OPEN: addons\vliss\lua\vliss\sh\gamemodes\sh_cfg_gm_melonbomber.lua

melon.Enabled = true
-- OPEN: addons\vliss\lua\vliss\sh\gamemodes\sh_cfg_gm_murder.lua

murder.Enabled = true
-- OPEN: addons\vliss\lua\vliss\sh\gamemodes\sh_cfg_gm_prophunt.lua

prophunt.Enabled = true
-- OPEN: addons\vliss\lua\vliss\sh\gamemodes\sh_cfg_gm_sandbox.lua

sandbox.Enabled = true
-- OPEN: addons\vliss\lua\vliss\sh\gamemodes\sh_cfg_gm_ttt.lua

ttt.Enabled = true
-- OPEN: addons\vliss\lua\vliss\sh\gamemodes\sh_cfg_gm_zombiesurvival.lua

zombie.Enabled = true
  • Change Enabled setting to true

  • Save the config file and restart your server

  • View server console -- check if Vliss detects the gamemode now:

▸Add Gamemode Support

If you wish to add your gamemode to Vliss for overall support; please follow the New Gamemodes tutorial in the Configuration section.

◾