Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
772
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.46 KB | None | 0 0
  1. -- pure clientside effects (affects fps)
  2.  
  3. CreateClientConVar("cl_tfa_3dscope", 0, true, true, "Enable 3D scopes?")
  4. CreateClientConVar("cl_tfa_3dscope_overlay", 0, true, true, "Enable 3D scope shadows?")
  5. CreateClientConVar("cl_tfa_laser_trails", 0, true, true, "Enable laser dot trails?")
  6. CreateClientConVar("cl_tfa_fx_gasblur", 0, true, true, "Enable muzzle gas blur?")
  7. CreateClientConVar("cl_tfa_fx_muzzlesmoke", 0, true, true, "Enable muzzle smoke trail?")
  8. CreateClientConVar("cl_tfa_fx_muzzlesmoke_limited", 0, true, true, "Limit muzzle smoke trails?")
  9. CreateClientConVar("cl_tfa_fx_ejectionsmoke", 0, true, true, "Enable shell ejection smoke?")
  10. CreateClientConVar("cl_tfa_legacy_shells", 0, true, true, "Use legacy shells?")
  11. CreateClientConVar("cl_tfa_fx_ejectionlife", 0, true, true, "How long shells exist in the world")
  12. CreateClientConVar("cl_tfa_fx_impact_enabled", 0, true, true, "Enable custom bullet impact effects?")
  13. CreateClientConVar("cl_tfa_fx_impact_ricochet_enabled", 0, true, true, "Enable bullet ricochet effect?")
  14. CreateClientConVar("cl_tfa_fx_impact_ricochet_sparks", 0, true, true, "Enable bullet ricochet sparks?")
  15. CreateClientConVar("cl_tfa_fx_impact_ricochet_sparklife", 0, true, true)
  16. CreateClientConVar("cl_tfa_fx_ads_dof", 0, true, true, "Enable iron sights DoF (Depth of Field)")
  17. CreateClientConVar("cl_tfa_fx_ads_dof_hd", 0, true, true, "Enable better quality for DoF")
  18. CreateClientConVar("cl_tfa_ballistics_fx_tracers_adv", "0", true, false, "Enable advanced tracer calculations for other users? This corrects smoke trail to their barrel")
  19. CreateClientConVar("cl_tfa_ballistics_fx_tracers_mp", "0", true, false, "Enable tracers for other TFA ballistics users?")
  20. CreateClientConVar("cl_tfa_ballistics_fx_tracers_style", "0", true, false, "Style of tracers for TFA ballistics? 0=disable,1=smoke")
  21. CreateClientConVar("cl_tfa_ballistics_fx_bullet", "0", true, false, "Display bullet models for each TFA ballistics bullet?")
  22. CreateClientConVar("cl_tfa_ballistics_mp", "0", true, false, "Receive bullet data from other players?") -- ?
  23. CreateClientConVar("cl_tfa_fx_rtscopeblur_mode", "0", true, false)
  24. CreateClientConVar("cl_tfa_fx_rtscopeblur_passes", "0", true, false)
  25. CreateClientConVar("cl_tfa_fx_rtscopeblur_intensity", "0", true, false)
  26. CreateClientConVar("cl_tfa_3dscope_quality", 0, true, true, "3D scope quality (leave -1 for autodetected)")
  27.  
  28. -- serverside vars (affects cpu)
  29.  
  30. CreateReplConVar("sv_tfa_penetration_limit", "0", "Number of objects we can penetrate through.")
  31. CreateReplConVar("sv_tfa_bullet_penetration", "0", "Allow bullet penetration?")
  32. CreateReplConVar("sv_tfa_bullet_ricochet", "0", "Allow bullet ricochet?")
  33. CreateReplConVar("sv_tfa_fx_penetration_decal", "0", "Enable decals on the other side of a penetrated object?")
  34. CreateReplConVar("sv_tfa_jamming", "0", "Enable jamming mechanics?")
  35. CreateReplConVar("sv_tfa_ballistics_substeps", 0, {FCVAR_REPLICATED, FCVAR_ARCHIVE}, "Substeps for ballistics; more is more precise, at the cost of performance.") -- default is one, you could reduce it to 0.5 i guess
  36. CreateReplConVar("sv_tfa_bullet_doordestruction", "0", "Allow players to shoot down doors?")
  37. CreateReplConVar("sv_tfa_ballistics_enabled", "0", {FCVAR_REPLICATED, FCVAR_ARCHIVE}, "Enable TFA Ballistics?")
  38. CreateReplConVar("sv_tfa_ballistics_bullet_life", 0, {FCVAR_REPLICATED, FCVAR_ARCHIVE}, "Time to process bullets before removing.")
  39. CreateReplConVar("sv_tfa_ammo_detonation", "0", "Ammo Detonation? (e.g. shoot ammo until it explodes) ")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement