Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // SCRIPT COMPILATION
- //----------------------------------------------------------------
- //Viewmodel Script
- //----------------------------------------------------------------
- // spawn with knife out and viewmodel mode set to "on"
- slot3
- r_drawviewmodel 1
- knife_vm_mode
- // replace [KEY] with the your Keybinds for the sapper/knife/ambassador/watch. You can also add a second bind for any of them.
- bind "2" +equip_sap // Key/button for sapper
- bind "3" +equip_knife // Key/button for knife
- bind "1" +equip_amby // Key/button for ambassador
- bind "mouse2" "+watch;spec_prev" // Key for watch (mouse2 default)
- //re-bind mouse1 //DONT TOUCH THIS
- alias knife_vm_mode "bind mouse1 +viewmodel_knife" // binds mouse1 to turn viewmodel on when attacking (for knife )
- alias amby_vm_mode "bind mouse1 +viewmodel_amby" // binds mouse1 to turn viewmodel off when attacking (for amby)
- alias sap_vm_mode "bind mouse1 +viewmodel_sap" // binds mouse 1 to turn viewmodel on when attacking and off when not (for sapper)
- // causes viewmodel to go off or on when you shoot
- alias +viewmodel_knife "+attack;r_drawviewmodel 1;+crosshairfire;dotxhaircolor;spec_next" // attacks, turns viewmodel on
- alias -viewmodel_knife "-attack;r_drawviewmodel 1;-crosshairfire" // finishes atack, turns viewmodel on again as safeguard
- alias +viewmodel_amby "+attack;r_drawviewmodel 0;+crosshairfire;dotxhaircolor;spec_next" // attacks, turns viewmodel off
- alias -viewmodel_amby "-attack;r_drawviewmodel 0;-crosshairfire" // finishes attack, turns viewmodel off again as safeguard
- alias +viewmodel_sap "+attack;r_drawviewmodel 1;+crosshairfire;dotxhaircolor;spec_next" // shows sapper when sapping
- alias -viewmodel_sap "-attack;r_drawviewmodel 1;-crosshairfire" // Finishes attack, turns viewmodel on again as safeguard
- // Equip item, turn vm on/off, set vm toggle for attack // dont touch this
- alias +equip_knife "slot3;r_drawviewmodel 1" // Equips knife, turns viewmodels on
- alias -equip_knife "knife_vm_mode;r_drawviewmodel 1" // Sets viewmodels to turn ON when stabbing (makes sure it stays on)
- alias +equip_amby "slot1" // Equips amby
- alias -equip_amby "amby_vm_mode" // Sets viewmodels to turn OFF when shooting
- alias +equip_sap "slot2;r_drawviewmodel 1" // Equips sapper, turns viewmodels on
- alias -equip_sap "sap_vm_mode" // Sets viewmodels to turn on while firing, and off when not
- alias +watch "+attack2;r_drawviewmodel 1;dotxhairtype" // watch up/cloak on/secondary attack + viewmodels on, also changes crosshair when you press it. To remove that feature, remove ";dotxhairtype"
- alias -watch "-attack2;r_drawviewmodel 1" // viewmodels on again as safeguard
- //----------------------------------------------------------------
- // Crosshair Type toggler // this changes the crosshair when you shoot. It helps prevent the amby cooldown on the crosshair. "Cl_crosshair_file namehere" is the crosshair, "cl_crosshair_scale numberhere" is the size. Change to your liking.
- //----------------------------------------------------------------
- alias dotxhairtype "dotxhairtypeb"
- alias dotxhairtypeb "cl_crosshair_file crosshair2;cl_crosshair_scale 20;alias dotxhairtype dotxhairtyper"
- alias dotxhairtyper "cl_crosshair_file crosshair5;cl_crosshair_scale 21;alias dotxhairtype dotxhairtypeb"
- bind mouse1 +crosshairfire
- alias +crosshairfire "+attack;dotxhairtype;spec_next"
- alias -crosshairfire "-attack;dotxhairtype"
- //----------------------------------------------------------------
- // xhair COLOR toggle //Colorb, c, and d can be changed to your liking. Just editing the RGB values.
- //----------------------------------------------------------------
- alias dotxhaircolor "dotxhaircolorb"
- alias dotxhaircolorb "cl_crosshair_blue 0; cl_crosshair_green 255; cl_crosshair_red 0;alias dotxhaircolor dotxhaircolorc"
- alias dotxhaircolorc "cl_crosshair_blue 255; cl_crosshair_green 0; cl_crosshair_red 255;alias dotxhaircolor dotxhaircolord"
- alias dotxhaircolord "cl_crosshair_blue 240; cl_crosshair_green 255; cl_crosshair_red 0;alias dotxhaircolor dotxhaircolorb"
- //----------------------------------------------------------------
- // Null-cancelling movement script // You can delete this if you wish, but it is extremely helpful. If you dont want the crosshair to change colors when you walk, remove "dotxhaircolor" from +mfwd, +mback, +mleft, +mright, -mfwd, -mback, -mleft, and -mright
- //----------------------------------------------------------------
- bind w +mfwd
- bind s +mback
- bind a +mleft
- bind d +mright
- alias +mfwd "-back;+forward;alias checkfwd +forward;dotxhaircolor"
- alias +mback "-forward;+back;alias checkback +back;dotxhaircolor"
- alias +mleft "-moveright;+moveleft;alias checkleft +moveleft;dotxhaircolor"
- alias +mright "-moveleft;+moveright;alias checkright +moveright;dotxhaircolor"
- alias -mfwd "-forward;checkback;alias checkfwd none;dotxhaircolor"
- alias -mback "-back;checkfwd;alias checkback none;dotxhaircolor"
- alias -mleft "-moveleft;checkright;alias checkleft none;dotxhaircolor"
- alias -mright "-moveright;checkleft;alias checkright none;dotxhaircolor"
- alias checkfwd none
- alias checkback none
- alias checkleft none
- alias checkright none
- alias none ""
- //-----------------------------------------------------------
- // disguise Script // This binds f4 to drop your disguise. It also binds f1-f3 to scout, pyro, engi disguises.
- Mouse3 rebinds f1-f3 as solly, demo, heavy. Mousewheel down rebinds f1-f3 to sniper, spy, med. mousewheel up rebinds f1-f3 to scout, pyro, engi.
- pressing "t" will toggle what team you are disguising as (if holding t while you press an fkey, you will disguise as a FRIENDLY class)
- //-----------------------------------------------------------
- bind f4 drop_disg
- alias drop_disg "disguise 8 -2" // instantly removes disguise
- bind "b" "lastdisguise"
- alias e_scout "disguise 1 -1; play vo\scout_yes01"
- alias e_sniper "disguise 2 -1; play vo\sniper_yes03"
- alias e_soldier "disguise 3 -1; play vo\soldier_yes04"
- alias e_demoman "disguise 4 -1; play vo\demoman_yes01"
- alias e_medic "disguise 5 -1; play vo\medic_yes03"
- alias e_hwguy "disguise 6 -1; play vo\heavy_yes03"
- alias e_pyro "disguise 7 -1; play vo\pyro_moveup01"
- alias e_spy "disguise 8 -1; play vo\spy_yes02"
- alias e_engineer "disguise 9 -1; play vo\engineer_yes03"
- alias a_scout "disguise 1 -2; play vo\scout_no02"
- alias a_sniper "disguise 2 -2; play vo\sniper_no01"
- alias a_soldier "disguise 3 -2; play vo\soldier_no02"
- alias a_demoman "disguise 4 -2; play vo\demoman_no03"
- alias a_medic "disguise 5 -2; play vo\medic_no01"
- alias a_hwguy "disguise 6 -2; play vo\heavy_no03"
- alias a_pyro "disguise 7 -2; play vo\pyro_no01"
- alias a_spy "disguise 8 -2; play vo\spy_no03"
- alias a_engineer "disguise 9 -2; play vo\engineer_no01"
- bind f1 e_engineer
- bind f2 e_sniper
- bind f3 e_medic
- bind f4 drop_disg
- alias drop_disg "disguise 8 -2" // instantly removes disguise
- bind mouse3 "bind f1 e_engineer;bind f2 e_sniper; bind f3 e_medic; bind t +f_disg1"
- alias +f_disg1 "bind f1 a_engineer; bind f2 a_sniper; bind f3 a_medic"
- alias -f_disg1 "bind f1 e_engineer; bind f2 e_sniper; bind f3 e_medic"
- bind mwheelup "bind f1 e_demoman; bind f2 e_soldier; bind f3 e_hwguy; bind t +f_disg2"
- alias +f_disg2 "bind f1 a_demoman; bind f2 a_soldier; bind f3 a_hwguy"
- alias -f_disg2 "bind f1 e_demoman; bind f2 e_soldier; bind f3 e_hwguy"
- bind mwheeldown "bind f1 e_scout; bind f2 e_pyro; bind f3 e_spy; bind t +f_disg3"
- alias +f_disg3 "bind f1 a_scout; bind f2 a_pyro; bind f3 a_spy"
- alias -f_disg3 "bind f1 e_scout; bind f2 e_pyro; bind f3 e_spy"
- //----------------------------------------------------------------
- //Ambassador Zoom Script // This will lower your FOV when holding shift. This is helpful for ambasador sniping. If you want to lower your sensitivity aswell, rewrite the first alias with an added ";sensitivity insertlowersensitivyhere" (no quotes). You must also rewrite the second alias with an added ";sensitivy insertnormalsensitivyhere". You can also change the keybind by changing "shift" to whatever you want.
- //----------------------------------------------------------------
- alias "+sens" "fov_desired 75; viewmodel_fov 100; viewmodel_fov_demo 100"
- alias "-sens" "fov_desired 90; viewmodel_fov 100; viewmodel_fov_demo 100"
- bind "shift" "+sens"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement