⚙️ConVars
Execute
-- Initialize the cvar objects
local cl_fullupdate = cvar.cl_fullupdate
local snd_setmixer = cvar.snd_setmixer
-- Invoke the callback
cl_fullupdate:call()
-- Adjust players’ step volume by setting the mixer volume to 1.2
snd_setmixer:call('GlobalFootsteps', 'vol', 1.2)Getting / Setting values
-- Initialize the cvar objects
local process_ticks = cvar.sv_maxusrcmdprocessticks
-- [60]: New value | [true]: Sets the raw value
process_ticks:int(60, true)Callbacks
Last updated