Advertisement
Guest User

Untitled

a guest
Dec 25th, 2014
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.36 KB | None | 0 0
  1. echo loading settings from file...
  2.  
  3. //my tf2 config
  4.  
  5.  
  6. //net settings
  7.  
  8. cl_cmdrate 66
  9. cl_interp 0.031
  10. cl_interp_ratio 1
  11. cl_lagcompensation 1
  12. cl_pred_optimize 2
  13. cl_smooth 0
  14. cl_smoothtime 0.01
  15. cl_updaterate 66
  16. rate 60000
  17.  
  18. //fps settings
  19.  
  20. cl_showfps 1
  21. fps_max 120
  22.  
  23. //sprays
  24.  
  25. cl_playerspraydisable 0
  26. r_spray_lifetime 2
  27.  
  28. //face animations
  29.  
  30. r_eyes 1
  31. r_flex 1
  32. r_lod 1
  33. r_rootlod 1
  34. r_teeth 1
  35. //ragdolls
  36. cl_ragdoll_fade_time 0
  37. cl_ragdoll_forcefade 1
  38. cl_ragdoll_physics_enable 0
  39. g_ragdoll_fadespeed 0
  40. g_ragdoll_lvfadespeed 0
  41. ragdoll_sleepaftertime 0
  42.  
  43. //gibs
  44.  
  45. cl_phys_props_enable 0
  46. cl_phys_props_max 0
  47. props_break_max_pieces 0
  48. r_propsmaxdist 1
  49. violence_agibs 0
  50. violence_hgibs 0
  51.  
  52. //graphics settings
  53.  
  54. cl_detaildist 0
  55. cl_detailfade 0
  56. cl_drawmonitors 0
  57. cl_ejectbrass 1
  58. cl_jiggle_bone_framerate_cutoff 1
  59. cl_new_impact_effects 0
  60. cl_show_splashes 0
  61. func_break_max_pieces 0
  62. glow_outline_effect_enable 0
  63. lod_transitiondist 0
  64. mat_antialias 0
  65. mat_bumpmap 0
  66. mat_colcorrection_disableentities 1
  67. mat_colorcorrection 0
  68. mat_disable_bloom 1
  69. mat_disable_fancy_blending 1
  70. mat_disable_lightwarp 1
  71. mat_envmapsize 8
  72. mat_envmaptgasize 8
  73. mat_filterlightmaps 1
  74. mat_filtertextures 1
  75. mat_forceaniso 1
  76. mat_hdr_level 0
  77. mat_max_worldmesh_vertices 512
  78. mat_monitorgamma 2.2
  79. mat_motion_blur_enabled 0
  80. mat_parallaxmap 0
  81. mat_picmip 1
  82. mat_reducefillrate 1
  83. mat_reduceparticles 1
  84. mat_specular 1
  85. mat_trilinear 1
  86. mat_viewportscale 1
  87. mat_viewportupscale 1
  88. mat_wateroverlaysize 1
  89. mp_decals 100
  90. r_3dsky 0
  91. r_ambientboost 0
  92. r_ambientfactor 0
  93. r_ambientmin 0
  94. r_avglight 0
  95. r_cheapwaterend 1
  96. r_cheapwaterstart 1
  97. r_decals 9
  98. r_decalstaticprops 0
  99. r_decal_cullsize 15
  100. r_drawdetailprops 0
  101. r_drawmodeldecals 0
  102. r_drawflecks 0
  103. r_dynamic 0
  104. r_flashlightdepthtexture 0
  105. r_forcewaterleaf 1
  106. r_lightaverage 0
  107. r_maxnewsamples 2
  108. r_maxsampledist 1
  109. r_propsmaxdist 0
  110. r_renderoverlayfragment 0
  111. r_staticprop_lod 4
  112. r_waterdrawreflection 0
  113. r_waterdrawrefraction 1
  114. r_waterforceexpensive 0
  115. r_waterforcereflectentities 0
  116. r_shadowrendertotexture 1
  117. rope_averagelight 0
  118. rope_collide 0
  119. rope_rendersolid 0
  120. rope_shake 0
  121. rope_smooth 0
  122. rope_subdiv 0
  123. rope_wind_dist 0
  124. tf_particles_disable_weather 1
  125. tracer_extra 0
  126. violence_ablood 1
  127. violence_hblood 1
  128. mat_vsync 0
  129. mat_queue_mode 2
  130. cl_threaded_bone_setup 0
  131. cl_threaded_client_leaf_system 0
  132. r_queued_decals 0
  133. r_queued_ropes 1
  134. r_queued_post_processing 0
  135. r_threaded_client_shadow_manager 1
  136. r_threaded_particles 1
  137. r_threaded_renderables 1
  138. mat_phong 0
  139. mat_filterlightmaps 1
  140. mat_filtertextures 1
  141. mat_antialias 1
  142.  
  143. // higher frames
  144.  
  145. exec gfx
  146.  
  147. // Mouse settings
  148.  
  149. m_rawinput "1"
  150. mat_vsync "0"
  151. m_filter "0"
  152. m_customaccel "0"
  153. m_mouseaccel1 "0"
  154. m_mouseaccel2 "0"
  155.  
  156. //CONTROLS
  157.  
  158.  
  159. bind w +mfwd
  160. bind s +mback
  161. bind a +mleft
  162. bind d +mright
  163. alias +mfwd "-back;+forward;alias checkfwd +forward"
  164. alias +mback "-forward;+back;alias checkback +back"
  165. alias +mleft "-moveright;+moveleft;alias checkleft +moveleft"
  166. alias +mright "-moveleft;+moveright;alias checkright +moveright"
  167. alias -mfwd "-forward;checkback;alias checkfwd none"
  168. alias -mback "-back;checkfwd;alias checkback none"
  169. alias -mleft "-moveleft;checkright;alias checkleft none"
  170. alias -mright "-moveright;checkleft;alias checkright none"
  171. alias checkfwd none
  172. alias checkback none
  173. alias checkleft none
  174. alias checkright none
  175. alias none ""
  176. alias hf "exec gfx"
  177. alias hq "exec gfx2"
  178. alias pm "cl_cmdrate +66"
  179. alias pass "rcon sv_password"
  180. alias hats "rcon tftrue_no_hats 0"
  181. alias +showscoresandnetgraph "+showscores; net_graph 3; mp_showrespawntimes"
  182. alias -showscoresandnetgraph "-showscores; net_graph 0"
  183. bind tab +showscoresandnetgraph
  184. bind kp_minus "toggle volume 0.02 0.09"
  185.  
  186. //spam binds
  187.  
  188. alias "genova" "say "cheer up^ :) youre small d1k isnt noticealbe under ur BaDnEsS" ;voicemenu 0 1"
  189. bind KP_INS "genova"
  190. bind KP_DEL "say 'I have been a fox for years now.' - Bagel"
  191. bind KP_END "say 'Shut up...deal with it..' - Bren"
  192. bind KP_DOWNARROW "say 'I am pretty sure I am a horse' - Bren"
  193. bind KP_PGDN "say 'You guys are deaf....im sorry' - Bren"
  194. bind KP_LEFTARROW "say i laffed iRL b-cuz your so BAD *(<(<(OEWNED>)>)*"
  195. bind KP_RIGHTARROW "say L0L :-) L0L u g0t r4P3D id10t :-) L0L"
  196. bind KP_UPARROW "say [5:32:30 PM] Bren moved to The World of Warcraft."
  197. bind KP_HOME "say 'What a horrible night to have a curse' - Porter"
  198. bind KP_PGUP "say 'There is nothing stopping me you'd best get over it.' - Ducky"
  199. bind KP_5 "say !! r0FL shat on -- ****nice play fagg0t****"
  200. bind kp_enter "voicemenu 2 7"
  201. bind r "voicemenu 1 4"
  202. bind l "explode"
  203. alias "killmed" "say_team" "their medic just got F U C K E D ;voicemenu 0 3"
  204. bind "f" "killmed"
  205. bind "." "changeteam"
  206. bind q lastinv
  207.  
  208. // HUD STUFF
  209.  
  210. hud_combattext_batching 1
  211. hud_combattext_batching 1
  212. hud_combattext_batching_window 1.0tf_hud_show_servertimelimit 1
  213. hud_fastswitch "1" //fast weapon switch
  214. hud_combattext "1" //damage text
  215.  
  216. cl_use_tournament_specgui "1" //enabled SpecHUD
  217. cl_spec_carrieditems "0" //hides itempanel while spectating
  218.  
  219. tf_spectator_target_location "0" //default TargetID location (others are bugged)
  220.  
  221. cl_disablehtmlmotd "1" //disables html MOTD
  222. //use the alternative file for MOTDs
  223. /if you want to see HTML content
  224.  
  225. "tf_hud_show_servertimelimit 1" //full time panel
  226. tf_colorblindassist 1
  227.  
  228.  
  229. //fullscreen toggle
  230.  
  231. alias fullscreen "mat_setvideomode 1024 768 0; bind f6 windowed"
  232. alias windowed "mat_setvideomode 1024 768 1; bind f6 fullscreen"
  233. bind f6 "fullscreen"
  234.  
  235. //------------------------------------------------
  236. // TF2 Anti-Virus by Casual v1.0
  237. //------------------------------------------------
  238.  
  239. // Protection against server_can_execute bypass
  240. // Make your cfg/config.cfg read-only for extra protection
  241. cl_allowupload 0
  242. alias cl_allowupload "echo Blocked cl_allowupload!"
  243. alias clear "echo Blocked clear!"
  244. alias unbindall "echo Blocked unbindall!"
  245.  
  246. // Adblock for motd, extra protection:
  247. // > Create an empty file in your tf directory named textwindow_temp.html and make it read-only (this prevents the motd from being saved & loaded)
  248. // > Add '127.0.0.1 motd.pinion.gg' to your hosts file. This prevents a well known motd advertising network to load
  249. cl_disablehtmlmotd 1
  250. alias closed_htmlpage "echo Blocked pinion!"
  251.  
  252. // Gets rid of servers playing annoying sound files
  253. // NOTE! This will also prevent the main menu from playing a song!
  254. // alias play "echo Blocked play!"
  255. // alias sndplaydelay "echo Blocked sndplaydelay!"
  256. // alias playgamesound "echo Blocked playgamesound!"
  257. // alias soundfade "echo Blocked soundfade!"
  258.  
  259. // Servers don't need this
  260. alias cl_spec_mode
  261. alias rpt_connect
  262. alias r_screenoverlay
  263.  
  264. // Hitsound stuff
  265.  
  266.  
  267. tf_dingalingaling "1"
  268. tf_dingaling_pitchmaxdmg "75"
  269. tf_dingaling_pitchmindmg "125"
  270. tf_dingaling_volume "1"
  271. tf_dingaling_wav_override "Tidus2.wav"
  272. play Tidus2.wav
  273. exec demobuddy.cfg
  274.  
  275. // misc
  276.  
  277. tf_quickplay_beta_preference 0
  278. volume "0.04"
  279. snd_musicvolume "0"
  280. cl_autoreload "1"
  281. cl_autorezoom "0"
  282. tf_remember_activeweapon "1"
  283. hud_combattext "1"
  284. hud_combattext_healing "1"
  285. jpeg_quality "100"
  286. unbind i
  287. bind f5 "inspect"
  288. cl_disablehtmlmotd "1"
  289. bind kp_enter "voicemenu 2 7"
  290. setinfo tftrue_fov 90
  291. fov_desired "90"
  292. viewmodel_fov "90"
  293. hud_combattext_batching_window "2"
  294. cl_hud_playerclass_use_playermodel "0"
  295. hud_fastswitch 1
  296. prec_screens 1
  297.  
  298. echo stoge`s (but mostly rhapsodys) config loaded, enjoy the ment!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement