• Issues with fretta13
    3 replies, posted
I set up fretta13 with prophunt from the workshop and everything works great. Only problem is that I get these errors in the console when joining the server. ConVarRef fretta_voting doesn't point to an existing ConVar ConVarRef WEAPONS_ALLOW_GRENADE doesn't point to an existing ConVar ConVarRef HUNTER_KILL_BONUS doesn't point to an existing ConVar ConVarRef HUNTER_FIRE_PENALTY doesn't point to an existing ConVar ConVarRef HUNTER_BLINDLOCK_TIME doesn't point to an existing ConVar ConVarRef gmod_physiterations doesn't point to an existing ConVar The convar's aren't going through for some reason, here is the code, why is this happening? Thanks. [code] // Number of seconds hunters are blinded/locked at the beginning of the map (Default: 30) CreateConVar("HUNTER_BLINDLOCK_TIME", "30", FCVAR_REPLICATED) //Create the convars here // Health points removed from hunters when they shoot (Default: 5) CreateConVar( "HUNTER_FIRE_PENALTY", "5", FCVAR_REPLICATED) // How much health to give back to the Hunter after killing a prop (Default: 20) CreateConVar( "HUNTER_KILL_BONUS", "20", FCVAR_REPLICATED) //Whether or not we include grenade launcher ammo (default: 1) CreateConVar( "WEAPONS_ALLOW_GRENADE", "1", FCVAR_REPLICATED) [/code]
Those convars don't exist in your code. Where is that file located?
[QUOTE=code_gs;43220338]Those convars don't exist in your code. Where is that file located?[/QUOTE] The file is in "garrysmod/gamemodes/prop_hunt/gamemode/sh_config.lua."
Same issue here..
Sorry, you need to Log In to post a reply to this thread.