Скрипт преднозначен для стрельбы из пистолетов. Производит два выстрела, с минимальной паузой между ними, для уменьшения отклонения точности из-за отдачи.
Code
Alias "w" "wait" alias "+a" "alias _special a;a" alias "-a" "alias _special" alias "a" "special;w;+attack;w;-attack" bind mouse1 +a
Установка:
скопируйте код в ваш конфиг. Вместо "x" установите клавишу активации
скрипта.
Скрипт сообщать команде о том что вы начали минирование бомбу(вам нужно перекрытие), и о том что вы разминировали ее.
Code
alias +defuse "+duck; +use; say_team ::Cover me, I'm Defusing The Bomb::" alias -defuse "-duck; -use; say_team ::Bomb Has Been Defused::" bind "e" "+defuse"
Create a cfg file named "shot_select.cfg" without the " " . Copy Paste this code into there. When you join a server, open the client console and type "exec shot_select" without the " ".
The "q" button will cycle between Full-Auto (medium crosshair size) and Single-Fire rate (tiny crosshair size). So the crosshair is a visual indicator of which mode you are currently using and the tiny crosshair single-fired is awesome for long range accurate shots!!!!!!!!!!!!!!!!!!!!!!!!!
If you want to change the button used to cycle modes change everywhere you see a "q" in the code to something else you want instead. You can also customize the crosshair sizes you want during each firerate mode by changing the number after each "crosshair_scale". The larger that number the smaller the crosshair size.
Practically every gun in CS:S has the choice between semi-auto/Full-Auto in real life, but not Burst. So this script keeps the realism high.
--------------------------------------------------------------------------------- alias "wait5" "wait; wait; wait; wait; wait";
alias "burst" "+attack; wait5; -attack"; alias "+normal" "+attack"; alias "-normal" "-attack";
alias "burst_bind" "cl_crosshairscale 4000; bind mouse1 burst; bind q normal_bind" alias "normal_bind" "cl_crosshairscale 900; bind mouse1 +normal; bind q burst_bind"
//::Instructions:: //copy the following into your counter-strike source\cstrike\cfg\autoexec.cfg file
alias "switch" "use weapon_knife; use weapon_glock; use weapon_usp; use weapon_p228; use weapon_deagle; use weapon_elite; use weapon_fiveseven; use weapon_awp; use weapon_g3sg1; use weapon_sg550; use weapon_galil; use weapon_ak47; use weapon_scout; use weapon_sg552; use weapon_famas; use weapon_m4a1; use weapon_aug; use weapon_m3; use weapon_xm1014; use weapon_mac10; use weapon_tmp; use weapon_mp5navy; use weapon_ump45; use weapon_p90; use weapon_m249"
alias "+switch" "+attack" alias "-switch" "switch;-attack"
// Type 1 awp switch (auto. switchs after you shoot) alias "awp.toggler" "awp.on" alias "awp.on" "bind mouse1 +switch;alias awp.toggler awp.off" alias "awp.off" "bind mouse1 +attack;alias awp.toggler awp.on"
bind "INS" "awp.toggler"
// Type 2 awp switch (manual. press q to switch) alias "awp.toggler2" "awp.on2" alias "awp.on2" "bind q switch;alias awp.toggler2 awp.off2" alias "awp.off2" "bind q lastinv;alias awp.toggler2 awp.on2"
bind "DEL" "awp.toggler2"
alias "mouse1.quickswitch" "bind mouse1 +switch" alias "mouse1.reset" "bind mouse1 +attack"
alias "_slot1.toggle" "_slot1.off; alias _slot1.toggle _slot1.on" alias "_slot1.on" "mouse1.quickswitch; alias _slot1.toggle _slot1.off" alias "_slot1.off" "mouse1.reset; alias _slot1.toggle _slot1.on"
alias "_slot1" "slot1; _slot1.toggle;" alias "_slot2" "slot2; mouse1.reset; alias _slot1.toggle _slot1.off" alias "_slot3" "slot3; mouse1.reset; alias _slot1.toggle _slot1.off" alias "_slot4" "slot4; mouse1.reset; alias _slot1.toggle _slot1.off" alias "_slot5" "slot5; mouse1.reset; alias _slot1.toggle _slot1.off"
use weapon_awp alias w "wait" alias w5 "w; w; w; w; w" alias w10 "w5; w5" alias switch "lastinv; w5; lastinv" alias shoot "+attack; w5; -attack2; -attack; w10" alias autoswitch "shoot; switch"
// The toggle
alias toggle_on "bind MOUSE1 autoswitch; bind h toggle_off" alias toggle_off "bind MOUSE1 +attack; bind h toggle_on" bind h "toggle_on" // Thats it, enjoy.
i.e. bind f1 "buy awp; buy deagle; buy primammo; buy secammo; buy flashbang; buy flashbang; buy defuser; buy hegrenade; buy smokegrenade; buy vesthelm" etc. Well after this all you'll need to type is:
bind f1 "awp; fe"
All you have to do is copy and paste this into your autoexec file:
//Buy Aliases alias glock "buy glock" alias usp "buy usp" alias p228 "buy p228" alias deagle "buy deagle" alias elite "buy elite" alias fiveseven "buy fiveseven" alias m3 "buy m3" alias xm1014 "buy xm1014" alias tmp "buy tmp" alias mac10 "buy mac10" alias mp5 "buy mp5navy" alias ump "buy ump45" alias p90 "buy p90" alias famas "buy famas" alias galil "buy galil" alias aug "buy aug" alias 552 "buy sg552" alias m4 "buy m4a1" alias ak "buy ak47" alias scout "buy scout" alias awp "buy awp" alias 550 "buy sg550" alias g3sg1 "buy g3sg1" alias m249 "buy m249" alias he "buy hegrenade" alias flash "buy flashbang" alias 2flash "flash; flash" alias smoke "buy smokegrenade" alias kev "buy vest" //I personally prefer kevlar to vest alias kevhelm "buy vesthelm" alias nvgs "buy nvgs" alias defuser "buy defuser" alias pammo "buy primammo" alias sammo "buy secammo" alias ammo "pammo; sammo" alias kevlar "kevhelm; kev" alias fe "ammo; deagle; defuser; 2flash; he; smoke; kevlar; nvgs" //FE means fullequipment
This is pretty much self explanatory, edit as you wish :D