X-tech Administrator
Mesaje : 833 Puncte : 2591 Reputatie : 7 Data de inscriere : 23/12/2011 Varsta : 28 Localizare : Fetesti
| Subiect: Scripturi Awp! Dum Ian 08, 2012 6:45 am | |
| Quick Jarate Switch Quickly Switch to Jarate and back to Previously selected item.
- Cod:
-
alias +jarate "slot2;+attack;wait 25" alias -jarate "-attack;lastinv" bind q "+jarate" -------------------------------------------- Quick Scope and Shot This scripts works well on 100 fps (use "max_fps 100")
- Cod:
-
bind mouse3 "+qz;" alias +qz "+attack2; wait 33; -attack2; +attack; wait 3; -attack;" --------------------------------------------- Disable Crosshair While Scoped This script will simply disable your crosshair while scoped
- Cod:
-
//Disable Crosshair By CupOfTea alias "+zoom" "+attack 2; crosshair 0" alias "-zoom" "-attack 2; crosshair 1" alias "+shoot" "+attack 1; crosshair 1" alias "-shoot" "-attack 1" alias "+inair" "+jump, crosshair 1" alias "-inair" "-jump" bind "mouse 1" "+shoot" // Your Primary fire key bind "mouse2" "+zoom" // Your Secondary fire key bind "space" "+inair" // Your Jump key NOTE - The crosshair 0 command does not work for the crosshairs you can choose in options->multiplayer. I'll try to fix this. Need to find the command first. ---------------------------------------------
Change sensitivity while scoped
This script will change the mouse sensitivity only when you are scoped. There are obvious benefits to this... you can have a high sensitivity when with secondary weapons, and a slower more accurate rifle while scoped.
Change 1.4 and 4.5 in the sensitivity area to whatever you want. 1.4 is the sensitivity I like when scoped, and 4.5 is the sensitivity the rest of the time.
- Cod:
-
-aim // This resets the sensitivity.
alias "aim" "+aim" alias "+aim" "sensitivity 1.4; alias aim -aim" // Sensitivity when scoped. alias "-aim" "sensitivity 4.5; alias aim +aim" // Sensitivity when non-scoped.
bind "space" "+jump; -aim" // If the sensitivity messes up, hit SPACE. bind "mouse2" "aim; +attack2; wait 40; -attack2" // You can change mouse2 to whatever you use for scoping. Alternately, use the cvar: zoom_sensitivity_ratio "#" where # is the multiple of your regular sensitivity you want.
For example: 4.5 normal and 1.4 zoomed = 0.311 (1.4/4.5) so: zoom_sensitivity_ratio "0.311" ----------------------------------------
Changes the sensitivity when you are scoped.
- Cod:
-
zoom_sensitivity_ratio "1.0" //is the default modify at will ---------------------------------------- Zoom On Hold
Hold down the zoom button to zoom in, and release the button to zoom out.
Tap the zoom button, and you will zoom in as normal. You may want to change the bind. A script for those who prefer a more responsive zoom.
- Cod:
-
// Zoom On Hold // =========================== Alias "+scope" "+attack2; wait 5; -attack2" alias "-scope" "+attack2; wait 5; -attack2"
bind "MOUSE5" "+scope" ----------------------------------------- Sensitivity Change on hold
Hold down the bound key to change your sensitivity to a set number, and release the key to reset it to another.
A script meant to make long distance sniping easier. Works alright with the Spy's revolver, too
- Cod:
-
//Sensivity Adjustment On hold function. alias "+sensetoggle" "sensitivity 7.5"; alias "-sensetoggle" "sensitivity 9.55"; bind "\" "+sensetoggle"; ------------------------------------------ |
|