alliedmodders / amxmodx

AMX Mod X - Half-Life 1 Scripting and Administration
http://www.amxmodx.org/
489 stars 197 forks source link

Increase buffer size for cvars #1041

Open wilianmaique opened 2 years ago

wilianmaique commented 2 years ago

if you try to change cvar 'sv_auto_precache_sounds_in_models' for example, you won't be able to because it's too big.

image

in admincmd.sma

public cmdCvar(id, level, cid)

default:

new arg[32], arg2[64]

change to

new arg[128], arg2[128]