AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Snippets and Tutorials (https://forums.alliedmods.net/forumdisplay.php?f=112)
-   -   List of Useful Locked Cvars (https://forums.alliedmods.net/showthread.php?t=72608)

Cooltad 06-11-2008 14:35

List of Useful Locked Cvars
 
I only know roughly one or so..

But I was thinking, wouldn't it be great to have a list of useful locked cvars such as spy's cloak time and uber charge time and overheal multipliers and the like?

If any of you agree, please post away all of the useful (and not so useful) locked cvars you know of! :D

The List ~ the sm_cvar part is what you type in before the command in server.cfg to make it unlocked, the quotes are required.

Miscellaneous
sm_cvar ai_expression_optimization "0" ~ not a locked cvar, but it is useful for server optimization change to 1 to use.
sm_cvar net_compressionvoice "0" ~ I have this set to one for better bandwidth usage on my server.
sm_cvar mp_waitingforplayers_time "10" ~ how long you need to "wait" for other players to join at each server round. Can't be disabled, just shortened.
sm_cvar tf_caplinear "1" ~ set this to 0, and you won't have to capture control points in any kind of order, you still need to get them all, though.

Medic
sm_cvar tf_max_health_boost "1.5" heals to 150%, ~ so change to 2 to make it 200% normal health.
sm_cvar sm_cvar weapon_medigun_damage_modifier "1.5" ~ changes damage you do(1.5x normal) while being healed by a medic unaffected by crits.
sm_cvar weapon_medigun_charge_rate "40" ~ change to a lower value to make Uber's charge faster.
sm_cvar tf_invuln_time "1" ~ changes how long you stay invul for after an uber, "2" = twice as long.

Spy
sm_cvar tf_spy_cloak_consume_rate "10" ~ lower to 5 to make it last twice as long.
sm_cvar tf_spy_cloak_regen_rate "3.3" ~ change to a higher value to make it regenerate faster.
sm_cvar tf_spy_cloak_no_attack_time "2" ~ change to 1 or 0 to shorten how long it takes to be able to attack after decloaking, 0 not recommended unless you have an "insane" modded server.

Engineer
sm_cvar obj_dispenser_heal_rate "10" ~ still working on getting this working right...
sm_cvar tf_sentrygun_damage "16" ~ if you change it to 32 sentries will do twice the normal amount of damage.
sm_cvar tf_sentrygun_metal_per_shell "1" ~ how much metal costs per shell duh. changing to 0 has nasty side-affects.
sm_cvar tf_sentrygun_metal_per_rocket "3" ~ how much metal costs per rocket duh. changing to -1 has really nasty side-affects.
sm_cvar tf_sentrygun_newtarget_dist "300" ~ not sure if this works or not, needs more testing..
sm_cvar tf_sentrygun_ammocheat "0" ~ changing to 1 gives sentries infinite ammo, no need to hit with wrench anymore! mix this with metal_per_etc to 0 for extra measure.
sm_cvar obj_child_damage_factor "1" ~ the damage factor all buildings receive. set to .5 for half damage.
sm_cvar obj_damage_factor "1" ~ not sure as to the difference between these two, so just set them both at once the same value.

Pyro
sm_cvar tf_flamethrower_maxdamagedist "300" ~ tired of valve fucking over your Pyro's? Change this to 350 to make things more fair.

Currently I'm looking for a way to edit the Kritzkrieg's damage multiplier. It's default value I know is 3.

DJ Tsunami 06-11-2008 19:49

Re: List of Useful Locked Cvars
 
http://www.dodbits.com/downloads/cva...r_list_a-z.htm

Cooltad 06-11-2008 21:39

Re: List of Useful Locked Cvars
 
No.
The locked cvars are not in that list.
I checked already, try again.
Anyways, gonna edit in ones I know of now..

DJ Tsunami 06-11-2008 21:46

Re: List of Useful Locked Cvars
 
http://de.pastebin.ca/760608
http://vsfgamers.com/forum/showthread.php?t=24845

Plenty more like them.

Cooltad 06-11-2008 21:50

Re: List of Useful Locked Cvars
 
This thread will still be useful for listing actually useful ones and telling what they do and their default values and how to use them etc. =]
Edit:
Also, many useful and cool looking cvars in there are not described or values not shown so this thread IS important. :D

ratty 06-12-2008 00:34

Re: List of Useful Locked Cvars
 
Someone made a plugin that lists the hidden ones:

http://forums.alliedmods.net/showthread.php?p=589914

Then you'd just have to experiement with them all to figure out what ones help, and what ones dont work so well.
I found one example of this, I modified tf_boost_drain_time and for some reason people would frequently get stuck in the ground. Didnt seem like it would cause something like that, but there it is.

bl4nk 06-12-2008 15:27

Re: List of Useful Locked Cvars
 
For a list of only the locked cvars, I modified one of the plugins I'm using to get this:

PHP Code:

#include <sourcemod>

public Plugin:myinfo =
{
  
name "locked cvar lister",
  
author "bl4nk",
  
description "lists locked cvars",
  
version "1.0.0",
  
url "http://forums.alliedmods.net/"
};

#if !defined FCVAR_DEVELOPMENTONLY
#define FCVAR_DEVELOPMENTONLY    (1<<1)
#endif

public OnPluginStart()
{
    
RegAdminCmd("sm_listlockedcvars"Command_ListCvarsADMFLAG_CHEATS);
}

public 
Action:Command_ListCvars(clientargs)
{
    
decl String:name[64];
    new 
Handle:cvarbool:isCommandflags;

    
cvar FindFirstConCommand(namesizeof(name), isCommandflags);
    if (
cvar == INVALID_HANDLE)
    {
        
PrintToConsole(client"Could not load cvar list");
        return 
Plugin_Handled;
    }

    do
    {
        if (
isCommand || !(flags FCVAR_DEVELOPMENTONLY) || !StrContains(name"bot"))
        {
            continue;
        }

        
PrintToConsole(client"Locked ConVar: %s"name);
    } while (
FindNextConCommand(cvarnamesizeof(name), isCommandflags));

    
CloseHandle(cvar);
    return 
Plugin_Handled;


After running the command (sm_listlockedcvars), I came up with this list:

Code:

Locked ConVar: cl_showanimstate
Locked ConVar: cl_showanimstate_log
Locked ConVar: fx_drawimpactdebris
Locked ConVar: fx_drawimpactdust
Locked ConVar: fx_drawmetalspark
Locked ConVar: tf_debug_weapontrail
Locked ConVar: tf_playersgib_forceup
Locked ConVar: tf_playersgib_force
Locked ConVar: tf_playergib_maxspeed
Locked ConVar: tf_teammate_max_invis
Locked ConVar: tf_tauntcam_yaw
Locked ConVar: tf_tauntcam_pitch
Locked ConVar: tf_tauntcam_dist
Locked ConVar: tf_max_separation_force
Locked ConVar: tf_vm_min_invis
Locked ConVar: tf_vm_max_invis
Locked ConVar: tf_roundinfo_pause
Locked ConVar: cl_showcrit
Locked ConVar: sv_showanimstate
Locked ConVar: sv_showanimstate_log
Locked ConVar: mp_feetyawrate
Locked ConVar: mp_facefronttime
Locked ConVar: mp_ik
Locked ConVar: sv_netvisdist
Locked ConVar: sv_suppress_viewpunch
Locked ConVar: sv_force_transmit_ents
Locked ConVar: sv_optimizedmovement
Locked ConVar: sv_stopspeed
Locked ConVar: sv_maxspeed
Locked ConVar: sv_accelerate
Locked ConVar: sv_airaccelerate
Locked ConVar: sv_wateraccelerate
Locked ConVar: sv_waterfriction
Locked ConVar: sv_footsteps
Locked ConVar: sv_rollspeed
Locked ConVar: sv_rollangle
Locked ConVar: sv_friction
Locked ConVar: sv_bounce
Locked ConVar: sv_maxvelocity
Locked ConVar: sv_stepsize
Locked ConVar: sv_backspeed
Locked ConVar: sv_waterdist
Locked ConVar: sv_pushaway_force
Locked ConVar: sv_pushaway_min_player_speed
Locked ConVar: sv_pushaway_max_force
Locked ConVar: sv_pushaway_clientside
Locked ConVar: sv_pushaway_player_force
Locked ConVar: sv_pushaway_max_player_force
Locked ConVar: sv_unlag
Locked ConVar: sv_maxunlag
Locked ConVar: sv_lagflushbonecache
Locked ConVar: sv_unlag_fixstuck
Locked ConVar: sv_unlag_debug
Locked ConVar: sv_pushaway_clientside_size
Locked ConVar: mp_capstyle
Locked ConVar: mp_blockstyle
Locked ConVar: mp_capdeteriorate_time
Locked ConVar: mp_showroundtransitions
Locked ConVar: mp_showcleanedupents
Locked ConVar: ch_item_name
Locked ConVar: item_quality_chance_unique
Locked ConVar: item_quality_chance_rare
Locked ConVar: item_quality_chance_common
Locked ConVar: tf_obj_build_rotation_speed
Locked ConVar: tf_obj_max_attach_dist
Locked ConVar: sv_ignore_hitboxes
Locked ConVar: anim_showstate
Locked ConVar: anim_showstatelog
Locked ConVar: mp_showgestureslots
Locked ConVar: mp_slammoveyaw
Locked ConVar: tf_maxspeed
Locked ConVar: tf_showspeed
Locked ConVar: tf_avoidteammates
Locked ConVar: tf_solidobjects
Locked ConVar: tf_clamp_back_speed
Locked ConVar: tf_clamp_back_speed_min
Locked ConVar: tf_caplinear
Locked ConVar: tf_stalematechangeclasstime
Locked ConVar: mp_waitingforplayers_time
Locked ConVar: tf_fixedup_damage_radius
Locked ConVar: tf_obj_gib_velocity_min
Locked ConVar: tf_obj_gib_velocity_max
Locked ConVar: tf_obj_gib_maxspeed
Locked ConVar: tf_obj_upgrade_per_hit
Locked ConVar: object_verbose
Locked ConVar: obj_damage_factor
Locked ConVar: obj_child_damage_factor
Locked ConVar: tf_fastbuild
Locked ConVar: tf_obj_ground_clearance
Locked ConVar: tf_sentrygun_damage
Locked ConVar: tf_sentrygun_ammocheat
Locked ConVar: tf_sentrygun_newtarget_dist
Locked ConVar: tf_sentrygun_metal_per_shell
Locked ConVar: tf_sentrygun_metal_per_rocket
Locked ConVar: tf_sentrygun_notarget
Locked ConVar: tf_teleporter_fov_start
Locked ConVar: tf_teleporter_fov_time
Locked ConVar: tf_playerstatetransitions
Locked ConVar: tf_weapon_ragdoll_velocity_min
Locked ConVar: tf_weapon_ragdoll_velocity_max
Locked ConVar: tf_weapon_ragdoll_maxspeed
Locked ConVar: tf_damageforcescale_other
Locked ConVar: tf_damageforcescale_self_soldier
Locked ConVar: tf_damagescale_self_soldier
Locked ConVar: tf_damage_lineardist
Locked ConVar: tf_damage_range
Locked ConVar: tf_max_voice_speak_delay
Locked ConVar: tf_debug_damage
Locked ConVar: tf_spy_invis_time
Locked ConVar: tf_spy_invis_unstealth_time
Locked ConVar: tf_spy_max_cloaked_speed
Locked ConVar: tf_max_health_boost
Locked ConVar: tf_invuln_time
Locked ConVar: tf_boost_drain_time
Locked ConVar: tf_debug_bullets
Locked ConVar: tf_damage_events_track_for
Locked ConVar: tf_useparticletracers
Locked ConVar: tf_spy_cloak_consume_rate
Locked ConVar: tf_spy_cloak_regen_rate
Locked ConVar: tf_spy_cloak_no_attack_time
Locked ConVar: tf_cheapobjects
Locked ConVar: tf_debug_flamethrower
Locked ConVar: tf_flamethrower_velocity
Locked ConVar: tf_flamethrower_drag
Locked ConVar: tf_flamethrower_float
Locked ConVar: tf_flamethrower_flametime
Locked ConVar: tf_flamethrower_vecrand
Locked ConVar: tf_flamethrower_boxsize
Locked ConVar: tf_flamethrower_maxdamagedist
Locked ConVar: tf_flamethrower_shortrangedamagemultiplier
Locked ConVar: tf_flamethrower_velocityfadestart
Locked ConVar: tf_flamethrower_velocityfadeend
Locked ConVar: tf_grenadelauncher_chargescale
Locked ConVar: tf_grenadelauncher_livetime
Locked ConVar: tf_grenadelauncher_min_contact_speed
Locked ConVar: tf_grenade_forcefrom_bullet
Locked ConVar: tf_grenade_forcefrom_buckshot
Locked ConVar: tf_grenade_forcefrom_blast
Locked ConVar: tf_grenade_force_sleeptime
Locked ConVar: tf_pipebomb_force_to_move
Locked ConVar: weapon_medigun_damage_modifier
Locked ConVar: weapon_medigun_construction_rate
Locked ConVar: weapon_medigun_charge_rate
Locked ConVar: weapon_medigun_chargerelease_rate
Locked ConVar: tf_medigun_lagcomp
Locked ConVar: mp_forceactivityset
Locked ConVar: tf_grenade_show_radius
Locked ConVar: tf_grenade_show_radius_time
Locked ConVar: tf_meleeattackforcescale
Locked ConVar: tf_rocket_show_radius
Locked ConVar: sv_instancebaselines
Locked ConVar: sv_useexplicitdelete
Locked ConVar: cl_interpolate
Locked ConVar: r_entity
Locked ConVar: sv_stressbots
Locked ConVar: sv_sendtables
Locked ConVar: sv_creationtickcheck

You guys are probably only interested in the tf_ commands (and a few of the others), though.

Cooltad 06-12-2008 19:30

Re: List of Useful Locked Cvars
 
Wooh, its gonna take me a while to see what the commands do, what changes to the values do, and what the default values are. -.-;

Edit: Also, the tf_boost_drain_time has nothing to do with people getting stuck. It determines how long it takes for the overheal to wear off, defaulted at 15 seconds. On my server its 120.

Edit 2: Updated the list, have fun!

ratty 06-12-2008 22:24

Re: List of Useful Locked Cvars
 
Quote:

Locked ConVar: item_quality_chance_unique
Locked ConVar: item_quality_chance_rare
Locked ConVar: item_quality_chance_common
Valve WTF?!?!?!!? :) Is this World of Team Fortress? WTB healgun enchant

And just so I can actually add something useful to this thread, I took the above list, and piped it into a script to dump out the default values.

First, these said no such cvar when trying it on the server, so they must be client only:

Quote:

cl_showanimstate
cl_showanimstate_log
fx_drawimpactdebris
fx_drawimpactdust
fx_drawmetalspark
tf_debug_weapontrail
tf_playersgib_forceup
tf_playersgib_force
tf_playergib_maxspeed
tf_teammate_max_invis
tf_tauntcam_yaw
tf_tauntcam_pitch
tf_tauntcam_dist
tf_max_separation_force
tf_vm_min_invis
tf_vm_max_invis
tf_roundinfo_pause
cl_showcrit
And these are the ones it could find, with default values:

Quote:

"anim_showstate" "-1"
"anim_showstatelog" "0"
"ch_item_name" ""
"cl_interpolate" "1.0"
"item_quality_chance_common" "1.0"
"item_quality_chance_rare" "0.5"
"item_quality_chance_unique" "0.1"
"mp_blockstyle" "1"
"mp_capdeteriorate_time" "90.0"
"mp_capstyle" "1"
"mp_facefronttime" "3"
"mp_feetyawrate" "720"
"mp_forceactivityset" "-1"
"mp_ik" "1"
"mp_showcleanedupents" "0"
"mp_showgestureslots" "-1"
"mp_showroundtransitions" "0"
"mp_slammoveyaw" "0"
"mp_waitingforplayers_time" "40"
"obj_child_damage_factor" "0.25"
"obj_damage_factor" "0"
"object_verbose" "0"
"r_entity" "-1"
"sv_accelerate" "10"
"sv_airaccelerate" "10"
"sv_backspeed" "0.6"
"sv_bounce" "0"
"sv_creationtickcheck" "1"
"sv_footsteps" "1"
"sv_force_transmit_ents" "0"
"sv_friction" "4"
"sv_ignore_hitboxes" "0"
"sv_instancebaselines" "1"
"sv_lagflushbonecache" "1"
"sv_maxspeed" "320"
"sv_maxunlag" "1.0"
"sv_maxvelocity" "3500"
"sv_netvisdist" "10000"
"sv_optimizedmovement" "1"
"sv_pushaway_clientside" "0"
"sv_pushaway_clientside_size" "15"
"sv_pushaway_force" "30000"
"sv_pushaway_max_force" "1000"
"sv_pushaway_max_player_force" "10000"
"sv_pushaway_min_player_speed" "75"
"sv_pushaway_player_force" "200000"
"sv_rollangle" "0"
"sv_rollspeed" "200"
"sv_sendtables" "0"
"sv_showanimstate" "-1"
"sv_showanimstate_log" "0"
"sv_stepsize" "18"
"sv_stopspeed" "100"
"sv_stressbots" "0"
"sv_suppress_viewpunch" "0"
"sv_unlag" "1"
"sv_unlag_debug" "0"
"sv_unlag_fixstuck" "0"
"sv_useexplicitdelete" "1"
"sv_wateraccelerate" "10"
"sv_waterdist" "12"
"sv_waterfriction" "1"
"tf_avoidteammates" "1"
"tf_boost_drain_time" "15.0"
"tf_caplinear" "1"
"tf_cheapobjects" "0"
"tf_clamp_back_speed" "0.9"
"tf_clamp_back_speed_min" "100"
"tf_damage_events_track_for" "30"
"tf_damageforcescale_other" "6.0"
"tf_damageforcescale_self_soldier" "10.0"
"tf_damage_lineardist" "0"
"tf_damage_range" "0.5"
"tf_damagescale_self_soldier" "0.60"
"tf_debug_bullets" "0"
"tf_debug_damage" "0"
"tf_debug_flamethrower" "0"
"tf_fastbuild" "0"
"tf_fixedup_damage_radius" "1"
"tf_flamethrower_boxsize" "8.0"
"tf_flamethrower_drag" "0.89"
"tf_flamethrower_flametime" "0.5"
"tf_flamethrower_float" "50.0"
"tf_flamethrower_maxdamagedist" "350.0"
"tf_flamethrower_shortrangedamagemultipli er" "1.2"
"tf_flamethrower_vecrand" "0.05"
"tf_flamethrower_velocity" "2300.0"
"tf_flamethrower_velocityfadeend" ".5"
"tf_flamethrower_velocityfadestart" ".3"
"tf_grenade_forcefrom_blast" "0.15"
"tf_grenade_forcefrom_buckshot" "0.75"
"tf_grenade_forcefrom_bullet" "2.0"
"tf_grenade_force_sleeptime" "1.0"
"tf_grenadelauncher_chargescale" "1.0"
"tf_grenadelauncher_livetime" "0.8"
"tf_grenadelauncher_min_contact_speed" "100"
"tf_grenade_show_radius" "0"
"tf_grenade_show_radius_time" "5.0"
"tf_invuln_time" "1.0"
"tf_max_health_boost" "1.5"
"tf_maxspeed" "400"
"tf_max_voice_speak_delay" "1.5"
"tf_medigun_lagcomp" "1"
"tf_meleeattackforcescale" "80.0"
"tf_obj_build_rotation_speed" "250"
"tf_obj_gib_maxspeed" "800"
"tf_obj_gib_velocity_max" "450"
"tf_obj_gib_velocity_min" "100"
"tf_obj_ground_clearance" "32"
"tf_obj_max_attach_dist" "160"
"tf_obj_upgrade_per_hit" "25"
"tf_pipebomb_force_to_move" "1500.0"
"tf_playerstatetransitions" "-2"
"tf_rocket_show_radius" "0"
"tf_sentrygun_ammocheat" "0"
"tf_sentrygun_damage" "16"
"tf_sentrygun_metal_per_rocket" "2"
"tf_sentrygun_metal_per_shell" "1"
"tf_sentrygun_newtarget_dist" "200"
"tf_sentrygun_notarget" "0"
"tf_showspeed" "0"
"tf_solidobjects" "1"
"tf_spy_cloak_consume_rate" "10.0"
"tf_spy_cloak_no_attack_time" "2.0"
"tf_spy_cloak_regen_rate" "3.3"
"tf_spy_invis_time" "1.0"
"tf_spy_invis_unstealth_time" "2.0"
"tf_spy_max_cloaked_speed" "999"
"tf_stalematechangeclasstime" "20"
"tf_teleporter_fov_start" "120"
"tf_teleporter_fov_time" "0.5"
"tf_useparticletracers" "1"
"tf_weapon_ragdoll_maxspeed" "300"
"tf_weapon_ragdoll_velocity_max" "150"
"tf_weapon_ragdoll_velocity_min" "100"
"weapon_medigun_charge_rate" "40"
"weapon_medigun_chargerelease_rate" "8"
"weapon_medigun_construction_rate" "10"
"weapon_medigun_damage_modifier" "1.5"

Neo Cool Dude 06-30-2008 16:41

Re: List of Useful Locked Cvars
 
Can someone explain to me the grenade cvars?

Cooltad 06-30-2008 20:26

Re: List of Useful Locked Cvars
 
Those don't do anything. Those were for (if) when they made grenades in the game, which they decided not to. Some extra things, likes models and cvars were left over, still.

DJ Tsunami 07-07-2008 20:05

Re: List of Useful Locked Cvars
 
Aren't they for the grenades coming from the Demoman's grenade launcher (not the sticky grenade launcher)?

Cooltad 07-07-2008 21:00

Re: List of Useful Locked Cvars
 
Nope.

necrosect 09-30-2008 17:52

Re: List of Useful Locked Cvars
 
1 Attachment(s)
Not to resurrect a dead thread, but thought it might be helpful to update the list since the few edits that Valve have made :)

MaKTaiL 10-01-2008 07:30

Re: List of Useful Locked Cvars
 
Quote:

Originally Posted by necrosect (Post 693256)
Not to resurrect a dead thread, but thought it might be helpful to update the list since the few edits that Valve have made :)

Cool! :mrgreen:

+ Karma

necrosect 10-01-2008 07:51

Re: List of Useful Locked Cvars
 
oh just thought I'd let people know to save with the experimenting, the ones regarding the close range damage multiplier on the flamethrower don't do anything at the moment, thinking maybe they were originally put in for playtesting when there was all the whining about people wanting the pyro nerfed after the update.

Apex_ 10-03-2008 17:19

Re: List of Useful Locked Cvars
 
*Edit*: Whoops, wrong cvars. I was thinking of the two pipebomb cvars added in the Pyro patch which alter the force and how long it takes to re-stick. Sorry!

I've been trying to update my list of hidden cvars (which has apparently been linked to from all sorts of places, thanks Google) with the class update added cvars and their functions but I keep coming up short on time.

necrosect 10-06-2008 18:12

Re: List of Useful Locked Cvars
 
yeah i think i have apretty good list around somewhere i'll go find it soon :P

noodleboy347 10-17-2009 13:27

Re: List of Useful Locked Cvars
 
Quote:

Locked ConVar: tf_rocket_show_radius
Locked ConVar: tf_meleeattackforcescale
Locked ConVar: tf_grenade_show_radius
Locked ConVar: tf_grenade_show_radius_time
Locked ConVar: mp_forceactivityset
Locked ConVar: weapon_medigun_damage_modifier
Locked ConVar: weapon_medigun_construction_rate
Locked ConVar: weapon_medigun_charge_rate
Locked ConVar: weapon_medigun_chargerelease_rate
Locked ConVar: tf_medigun_lagcomp
Locked ConVar: tf_grenadelauncher_chargescale
Locked ConVar: tf_grenadelauncher_livetime
Locked ConVar: tf_grenadelauncher_min_contact_speed
Locked ConVar: tf_grenade_forcefrom_bullet
Locked ConVar: tf_grenade_forcefrom_buckshot
Locked ConVar: tf_grenade_forcefrom_blast
Locked ConVar: tf_grenade_force_sleeptime
Locked ConVar: tf_pipebomb_force_to_move
Locked ConVar: tf_pipebomb_reflect_reset_time
Locked ConVar: tf_flamethrower_velocity
Locked ConVar: tf_flamethrower_drag
Locked ConVar: tf_flamethrower_float
Locked ConVar: tf_flamethrower_flametime
Locked ConVar: tf_flamethrower_vecrand
Locked ConVar: tf_flamethrower_maxdamagedist
Locked ConVar: tf_flamethrower_shortrangedamagemultiplier
Locked ConVar: tf_flamethrower_velocityfadestart
Locked ConVar: tf_flamethrower_velocityfadeend
Locked ConVar: tf_flamethrower_burst_zvelocity
Locked ConVar: tf_flamethrower_burstammo
Locked ConVar: tf_damageforcescale_self_pyro_rj
Locked ConVar: tf_scout_stunball_base_duration
Locked ConVar: tf_scout_stunball_base_speed
Locked ConVar: sv_proj_stunball_damage
Locked ConVar: tf_scout_stunball_ball_regen_rate
Locked ConVar: tf_scout_bat_launch_delay
Locked ConVar: tf_cheapobjects
Locked ConVar: tf_debug_projectile
Locked ConVar: tf_spy_invis_time
Locked ConVar: tf_spy_invis_unstealth_time
Locked ConVar: tf_spy_max_cloaked_speed
Locked ConVar: tf_max_health_boost
Locked ConVar: tf_invuln_time
Locked ConVar: tf_player_movement_stun_time
Locked ConVar: tf_scout_dodge_move_penalty_duration
Locked ConVar: tf_scout_dodge_move_penalty
Locked ConVar: tf_soldier_buff_pulses
Locked ConVar: tf_boost_drain_time
Locked ConVar: tf_debug_bullets
Locked ConVar: tf_damage_events_track_for
Locked ConVar: tf_useparticletracers
Locked ConVar: tf_spy_cloak_consume_rate
Locked ConVar: tf_spy_cloak_regen_rate
Locked ConVar: tf_spy_cloak_no_attack_time
Locked ConVar: tf_scout_phase_regen_rate
Locked ConVar: tf_scout_phase_consume_rate
Locked ConVar: tf_scout_phase_activation
Locked ConVar: tf_feign_death_duration
Locked ConVar: tf_playerstatetransitions
Locked ConVar: tf_weapon_ragdoll_velocity_min
Locked ConVar: tf_weapon_ragdoll_velocity_max
Locked ConVar: tf_weapon_ragdoll_maxspeed
Locked ConVar: tf_damageforcescale_other
Locked ConVar: tf_damageforcescale_self_soldier_rj
Locked ConVar: tf_damageforcescale_self_soldier_badrj
Locked ConVar: tf_damagescale_self_soldier
Locked ConVar: tf_damage_lineardist
Locked ConVar: tf_damage_range
Locked ConVar: tf_feign_death_damage_scale
Locked ConVar: tf_max_voice_speak_delay
Locked ConVar: tf_teleporter_fov_start
Locked ConVar: tf_teleporter_fov_time
Locked ConVar: tf_sentrygun_damage
Locked ConVar: tf_sentrygun_ammocheat
Locked ConVar: tf_sentrygun_newtarget_dist
Locked ConVar: tf_sentrygun_metal_per_shell
Locked ConVar: tf_sentrygun_metal_per_rocket
Locked ConVar: tf_sentrygun_notarget
Locked ConVar: tf_obj_gib_velocity_min
Locked ConVar: tf_obj_gib_velocity_max
Locked ConVar: tf_obj_gib_maxspeed
Locked ConVar: tf_obj_upgrade_per_hit
Locked ConVar: object_verbose
Locked ConVar: obj_damage_factor
Locked ConVar: obj_child_damage_factor
Locked ConVar: tf_fastbuild
Locked ConVar: tf_obj_ground_clearance
Locked ConVar: tf_caplinear
Locked ConVar: tf_stalematechangeclasstime
Locked ConVar: tf_arena_force_class
Locked ConVar: tf_arena_change_limit
Locked ConVar: mp_waitingforplayers_time
Locked ConVar: tf_gamemode_arena
Locked ConVar: tf_gamemode_cp

wasder 08-07-2010 14:01

Re: List of Useful Locked Cvars
 
Sorry for posting it in a dead theme, but I think it will be useful for someone - a fresh list of hidden cvars.

Code:

Locked ConVar: sv_showanimstate
Locked ConVar: sv_showanimstate_log
Locked ConVar: mp_feetyawrate
Locked ConVar: mp_facefronttime
Locked ConVar: mp_ik
Locked ConVar: sv_netvisdist
Locked ConVar: sv_suppress_viewpunch
Locked ConVar: sv_force_transmit_ents
Locked ConVar: sv_optimizedmovement
Locked ConVar: sv_stopspeed
Locked ConVar: sv_maxspeed
Locked ConVar: sv_accelerate
Locked ConVar: sv_airaccelerate
Locked ConVar: sv_wateraccelerate
Locked ConVar: sv_waterfriction
Locked ConVar: sv_footsteps
Locked ConVar: sv_rollspeed
Locked ConVar: sv_rollangle
Locked ConVar: sv_friction
Locked ConVar: sv_bounce
Locked ConVar: sv_maxvelocity
Locked ConVar: sv_stepsize
Locked ConVar: sv_backspeed
Locked ConVar: sv_waterdist
Locked ConVar: sv_pushaway_force
Locked ConVar: sv_pushaway_min_player_speed
Locked ConVar: sv_pushaway_max_force
Locked ConVar: sv_pushaway_clientside
Locked ConVar: sv_pushaway_player_force
Locked ConVar: sv_pushaway_max_player_force
Locked ConVar: sv_unlag
Locked ConVar: sv_maxunlag
Locked ConVar: sv_lagflushbonecache
Locked ConVar: sv_unlag_fixstuck
Locked ConVar: sv_unlag_debug
Locked ConVar: sv_pushaway_clientside_size
Locked ConVar: mp_capstyle
Locked ConVar: mp_blockstyle
Locked ConVar: mp_capdeteriorate_time
Locked ConVar: mp_showroundtransitions
Locked ConVar: mp_showcleanedupents
Locked ConVar: tf_demandloaditems
Locked ConVar: item_quality_chance_unique
Locked ConVar: item_quality_chance_rare
Locked ConVar: item_quality_chance_common
Locked ConVar: tf_obj_build_rotation_speed
Locked ConVar: tf_obj_max_attach_dist
Locked ConVar: sv_ignore_hitboxes
Locked ConVar: anim_showstate
Locked ConVar: anim_showstatelog
Locked ConVar: mp_showgestureslots
Locked ConVar: mp_slammoveyaw
Locked ConVar: steamworks_show_uploads
Locked ConVar: tf_maxspeed
Locked ConVar: tf_showspeed
Locked ConVar: tf_avoidteammates
Locked ConVar: tf_solidobjects
Locked ConVar: tf_clamp_back_speed
Locked ConVar: tf_clamp_back_speed_min
Locked ConVar: tf_scout_air_dash_count
Locked ConVar: tf_force_holidays_off
Locked ConVar: tf_caplinear
Locked ConVar: tf_stalematechangeclasstime
Locked ConVar: tf_arena_force_class
Locked ConVar: tf_arena_change_limit
Locked ConVar: mp_waitingforplayers_time
Locked ConVar: tf_gamemode_arena
Locked ConVar: tf_gamemode_cp
Locked ConVar: tf_gamemode_ctf
Locked ConVar: tf_gamemode_payload
Locked ConVar: tf_bot_count
Locked ConVar: tf_obj_gib_velocity_min
Locked ConVar: tf_obj_gib_velocity_max
Locked ConVar: tf_obj_gib_maxspeed
Locked ConVar: tf_obj_upgrade_per_hit
Locked ConVar: object_verbose
Locked ConVar: obj_damage_factor
Locked ConVar: obj_child_damage_factor
Locked ConVar: tf_fastbuild
Locked ConVar: tf_obj_ground_clearance
Locked ConVar: tf_obj_damage_tank_achievement_amount
Locked ConVar: tf_sentrygun_damage
Locked ConVar: tf_sentrygun_mini_damage
Locked ConVar: tf_sentrygun_ammocheat
Locked ConVar: tf_sentrygun_newtarget_dist
Locked ConVar: tf_sentrygun_metal_per_shell
Locked ConVar: tf_sentrygun_metal_per_rocket
Locked ConVar: tf_sentrygun_notarget
Locked ConVar: tf_sentrygun_max_absorbed_damage_while_controlled_for_achieveme
Locked ConVar: tf_sentrygun_kill_after_redeploy_time_achievement
Locked ConVar: tf_teleporter_fov_start
Locked ConVar: tf_teleporter_fov_time
Locked ConVar: tf_playerstatetransitions
Locked ConVar: tf_weapon_ragdoll_velocity_min
Locked ConVar: tf_weapon_ragdoll_velocity_max
Locked ConVar: tf_weapon_ragdoll_maxspeed
Locked ConVar: tf_damageforcescale_other
Locked ConVar: tf_damageforcescale_self_soldier_rj
Locked ConVar: tf_damageforcescale_self_soldier_badrj
Locked ConVar: tf_damagescale_self_soldier
Locked ConVar: tf_damage_lineardist
Locked ConVar: tf_damage_range
Locked ConVar: tf_feign_death_damage_scale
Locked ConVar: tf_max_voice_speak_delay
Locked ConVar: tf_spy_invis_time
Locked ConVar: tf_spy_invis_unstealth_time
Locked ConVar: tf_spy_max_cloaked_speed
Locked ConVar: tf_max_health_boost
Locked ConVar: tf_invuln_time
Locked ConVar: tf_player_movement_stun_time
Locked ConVar: tf_soldier_buff_pulses
Locked ConVar: tf_boost_drain_time
Locked ConVar: tf_damage_events_track_for
Locked ConVar: tf_useparticletracers
Locked ConVar: tf_spy_cloak_consume_rate
Locked ConVar: tf_spy_cloak_regen_rate
Locked ConVar: tf_spy_cloak_no_attack_time
Locked ConVar: tf_scout_energydrink_regen_rate
Locked ConVar: tf_scout_energydrink_consume_rate
Locked ConVar: tf_scout_energydrink_activation
Locked ConVar: tf_feign_death_duration
Locked ConVar: tf_cheapobjects
Locked ConVar: tf_scout_stunball_base_duration
Locked ConVar: tf_scout_stunball_base_speed
Locked ConVar: sv_proj_stunball_damage
Locked ConVar: tf_scout_stunball_ball_regen_rate
Locked ConVar: tf_scout_bat_launch_delay
Locked ConVar: tf_flamethrower_velocity
Locked ConVar: tf_flamethrower_drag
Locked ConVar: tf_flamethrower_float
Locked ConVar: tf_flamethrower_flametime
Locked ConVar: tf_flamethrower_vecrand
Locked ConVar: tf_flamethrower_maxdamagedist
Locked ConVar: tf_flamethrower_shortrangedamagemultiplier
Locked ConVar: tf_flamethrower_velocityfadestart
Locked ConVar: tf_flamethrower_velocityfadeend
Locked ConVar: tf_flamethrower_burst_zvelocity
Locked ConVar: tf_flamethrower_burstammo
Locked ConVar: tf_grenadelauncher_chargescale
Locked ConVar: tf_grenadelauncher_livetime
Locked ConVar: tf_grenadelauncher_min_contact_speed
Locked ConVar: tf_grenade_forcefrom_bullet
Locked ConVar: tf_grenade_forcefrom_buckshot
Locked ConVar: tf_grenade_forcefrom_blast
Locked ConVar: tf_grenade_force_sleeptime
Locked ConVar: tf_pipebomb_force_to_move
Locked ConVar: tf_pipebomb_deflect_reset_time
Locked ConVar: tf_sniper_jar_regen_rate
Locked ConVar: weapon_medigun_damage_modifier
Locked ConVar: weapon_medigun_construction_rate
Locked ConVar: weapon_medigun_charge_rate
Locked ConVar: weapon_medigun_chargerelease_rate
Locked ConVar: tf_medigun_lagcomp
Locked ConVar: mp_forceactivityset
Locked ConVar: tf_grenade_show_radius
Locked ConVar: tf_grenade_show_radius_time
Locked ConVar: tf_meleeattackforcescale
Locked ConVar: tf_rocket_show_radius
Locked ConVar: sv_instancebaselines
Locked ConVar: sv_useexplicitdelete
Locked ConVar: cl_interpolate
Locked ConVar: dbg_demofile
Locked ConVar: r_entity
Locked ConVar: sv_stressbots
Locked ConVar: sv_sendtables
Locked ConVar: sv_creationtickcheck

Some of them can be funny:

tf_scout_stunball_ball_regen_rate but if 0 a server becomes laggy
sv_proj_stunball_damage - the damage by sandman's ball
tf_scout_air_dash_count - the number of scout jumps
with these cvars you can make air battles like in FF :)

tf_sniper_jar_regen_rate - I think you understood :)

spunkster21 08-08-2010 07:39

Re: List of Useful Locked Cvars
 
Quote:

Originally Posted by wasder (Post 1264328)
Sorry for posting it in a dead theme, but I think it will be useful for someone - a fresh list of hidden cvars.

Thanks. tf_obj_upgrade_per_hit was just what I was looking for to increase the amount of upgrade per wrench hit. I was trying to script it, unsuccessfully, but this is so much better.

McFlurry 09-18-2010 22:46

Re: List of Useful Locked Cvars
 
1 Attachment(s)
Well I think this will be useful to some people. I edited bl4nk's code so it will make all the locked cvars/cmds unlocked and will show up as valid commands/cvars instead of unknown commands.
PHP Code:

#include <sourcemod>

public Plugin:myinfo =
{
    
name "Locked Cvar Unlocker",
    
author "bl4nk(Small edit by McFlurry)",
    
description "lists locked cvars",
    
version "1.0.1",
    
url "http://forums.alliedmods.net/"
};

public 
OnMapStart()
{
    
decl String:name[64];
    new 
Handle:cvarbool:isCommandflags;
    
cvar FindFirstConCommand(namesizeof(name), isCommandflags);
    if (
cvar == INVALID_HANDLE)
    {
        return;
    }    
    do
    {
        if(
isCommand || !(flags FCVAR_LAUNCHER))
        {
            continue;
        }
        
SetCommandFlags(nameflags & ~FCVAR_LAUNCHER);
    } while(
FindNextConCommand(cvarnamesizeof(name), isCommandflags));
    {
        
SetCommandFlags(nameflags & ~FCVAR_LAUNCHER);
    }    
    
CloseHandle(cvar);



doramide7 09-29-2010 17:31

Re: List of Useful Locked Cvars
 
Quote:

Originally Posted by ratty (Post 637958)
Someone made a plugin that lists the hidden ones:

Then you'd just have to experiement with them all to figure out what ones help, and what ones dont work so well.
I found one example of this, I modified tf_boost_drain_time and for some reason people would frequently get stuck in the ground. Didnt seem like it would cause something like that, but there it is.

Wooh, its gonna take me a while to see what the commands do, what changes to the values do, and what the default values are. -.-;

Edit: Also, the tf_boost_drain_time has nothing to do with people getting stuck. It determines how long it takes for the overheal to wear off, defaulted at 15 seconds. On my server its 120.

Edit 2: Updated the list, have fun!


All times are GMT -4. The time now is 18:22.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.