▸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.