News | Team | FAQ | Linkage | Contact | Forum a
 
 

Counter-Strike Scripts


 

 

 


Does this site look like a rip off of one of the gamespy network sites?

Yes
No


View Results

 

















 
SCRIPTS
Sorry who i just Tk'd!
Team flashlight warning
Quick Knife Slash
Quick knife stab
Left/Right Weapon Models Switcher
Ammo Buy Script
Equipment Buy Script
Radar Toggler
C4 Planter
Night Vision Goggles Adjuster
Grenade Script
Radio Cycler
Radio Script
Weapon Buy Script
Jump Clear
Weapon Switcher
Knife-Run-Last-Gun · control
Burst Script
Jump Duck Script
Duck Toggle Script
Walk Toggle Script
Triple Exit Script
Mouse Invert
CS Rcon
 



Script name: Sorry who i just Tk'd!
Description: On Z_Malloc's site it posted on the news about a name changing alias with spaces so this simple but useful script popped into mind when I accidently TK'd a team mate and apologised by changing my name. What this script does is toggle the name from your usual alias to "Sorry it was an accident" and back with the 2nd button press.

Download: here

With thanks to: huckS

the script:
alias nameswap "sorry"
alias sorry "name Normal; alias nameswap sorry2"
alias sorry2 "name Sorry%it%was%an%accdient; alias nameswap sorry"

bind "x" "nameswap"

top



 

Script name: Team flashlight warning
Description: When your binded key is pressed it will turn the flashlight on while giving your team a warning not to shoot. Useful in dark areas!

Download: here

With thanks to: huckS

the script:
alias flon "echo flashlight on ;say_team Don't shoot same team!; impulse 100; bind "x" alias fl floff"
alias floff "echo flashlight off; impulse 100; bind "x" alias fl flon"

alias fl "flon"

bind "x" fl

top



Script name: Quick Knife Slash
Description: When the key assigned to +quickslash is held down, this alias will pull out your knife and start slashing. As soon as you release the key, it will go back to your previous weapon.

Download: here

With thanks to: Nextwish

the script:
alias +quickslash "weapon_knife; wait; +attack"
alias -quickslash "-attack; lastinv"
bind "x" "+quickslash"

top



Script name: Quick Knife Stab
Description: When the key assigned to +quickstab is held down, this alias will pull out your knife and start stabbing. As soon as you release the key, it will go back to your previous weapon.

Download: here

With thanks to: Nextwish

the script:
alias +quickstab "weapon_knife; wait; +attack2"
alias -quickstab "-attack2; lastinv"
bind "x" "+quickstab"

top



Script name: Left/Right Weapon Models Switcher
Description: Each time weap_t is activated it will change between, left and right handed gun models.

Download: here

With thanks to: Nextwish

the script:
alias weap_t weap_left
alias weap_left "alias weap_t weap_right; setinfo lefthand 1; wait; wait; wait; weapon_knife; wait; wait; wait; lastinv"
alias weap_right "alias weap_t weap_left; setinfo lefthand 0; wait; wait; wait; weapon_knife; wait; wait; wait; lastinv"
bind "x" "weap_t"

top



Script name: Ammo Buy Script
Description: When buyprime, is activiated it and if you are in a buyzone, it will fill your primary gun up with ammo - Likewise, it will do the same, but for your secondary gun if you activate buysecon.

Download: here

With thanks to: Nextwish

the script:
alias buyprime "buy; menuselect 6"
alias buysecon "buy; menuselect 7"
bind "x" "buyprime"

top



Script name: Equipment Buy Script
Description: These aliases simply purchase equipment. The buynvg alias, is a little different in the fact, that when you buy Night Vision Goggles with that alias, it will automatically turn them on.

Download: here

With thanks to: Nextwish

the script:
alias buyvest "buyequip; menuselect 1"
alias buyvest2 "buyequip; menuselect 2"
alias buycgren "buyequip; menuselect 3"
alias buyhegren "buyequip; menuselect 4"
alias buysgren "buyequip; menuselect 5"
alias buydefuser "buyequip; menuselect 6"
alias buynvg "buyequip; menuselect 7; wait; wait; nightvision"

bind "x" "buyvest"
bind "x" "buyvest2"
bind "x" "buycgren"
bind "x" "buyhegren"
bind "x" "buysgren"
bind "x" "buydefuser"
bind "x" "buynvg"

top



Script name: Radar Toggler
Description: This scipt when activated, will either turn on or off the radar, depending on the current state of the radar.

Download: here

With thanks to: Nextwish

the script:
alias radar_t radar_off
alias radar_off "alias radar_t radar_on; hideradar"
alias radar_on "alias radar_t radar_off; drawradar"

bind "x" "radar_t"

top



 

 

Script name: C4 Planter
Description: This alias which when the key assigned to it is pressed and held it will make you make you duck and notify your teammates that you are planting the C4 and start arming the it. If you let go, it will go back to your previous weapon.

Download: here

With thanks to: Nextwish

the script:
alias +plant_c4 "weapon_c4; wait; wait; +attack; +duck; say_team Cover Me, I'm Planting The C4!"
alias -plant_c4 "-attack; -duck; lastinv"

bind "x" "+plant_c4"

top



Script name: Night Vision Goggles Adjuster
Description: This scipt adjusts the intensity of the night vision goggles.

Download: here

With thanks to: Nextwish

the script:
alias nvg_up "+nvgadjust; w; +nvgadjust; w; +nvgadjust"
alias nvg_down "-nvgadjust; w; -nvgadjust; w; -nvgadjust"

bind "x" "nvg_up"
bind "x" "nvg_down"

top



Script name: Grenade Script
Description: Pressing gmode cycles through the grenade, +gfire prepares to throw, warns your team, and throw when you release. Cool script.

Download: here

With thanks to: FatboyTim

the script:
alias devon "developer 1"
alias devoff "developer 0"

alias flashmsg "say_team Watch your eyes, I'm throwing a Flashbang!"
alias hemsg "say_team Look out! I'm throwing an HE grenade!"
alias smokemsg "say_team Get ready, I'm throwing a Smoke-bomb!"
alias g1a "use weapon_flashbang; wait; flashmsg; +attack"
alias g2a "use weapon_hegrenade; wait; hemsg; +attack"
alias g3a "use weapon_smokegrenade; wait; smokemsg; +attack"
alias +gfire "g1a"
alias -gfire "-attack; wait; wait; wait; wait; wait; wait; lastinv"

alias gmode "grenmode1"

alias grenmode1 "alias +gfire g2a; devon; echo HE selected; devoff; alias gmode grenmode2"
alias grenmode2 "alias +gfire g3a; devon; echo Smoke selected; devoff; alias gmode grenmode3"
alias grenmode3 "alias +gfire g1a; devon; echo Flashbang selected; devoff; alias gmode grenmode1"

bind "x" "+gfire"
bind "x" "gmode"

top



Script name: Radio Cycler
Description: This script will cycle through the radio menus on each key stroke.

Download: here

With thanks to: RzE

the script:
alias radiocyc "rc1"

alias rc1 "radio1; alias radiocyc rc2"
alias rc2 "radio2; alias radiocyc rc3"
alias rc3 "radio3; alias radiocyc rc1"

bind "x" "radiocyc"

top



Script name: Radio Script

Description: Plain radio aliases, here's the key (thanks [QuAd]dUnCAn-ALC):

cover -cover me
point - you take the point
holdpos - hold this position
circle - circle around back
follow - follow me
takingfire - Taking fire, need assistance
go - go, go, go
fall - team fall back
stick - stick together team
getinpos - get in position and wait for my go
storm - storm the front
rein - report in team
affirm - affirmative / roger that
spotted - enemy spotted
help - need backup
sclear - sector clear
inpos - i'm in position
reporting - reporting in
blow - get out of there she's gonna blow
neg - negative
enedown - enemy down

Download: here

With thanks to: RzE

the script:
alias cover "radio1; menuselect1"
alias point "radio1; menuselect2"
alias holdpos "radio1; menuselect3"
alias regroup "radio1; menuselect4"
alias follow "radio1; menuselect5"
alias takingfire "radio1; menuselect6"
alias go "radio2; menuselect1"
alias fall "radio2; menuselect2"
alias stick "radio2; menuselect3"
alias getinpos "radio2; menuselect4"
alias storm "radio2; menuselect5"
alias rein "radio2; menuselect6"
alias affirm "radio3; menuselect1"
alias spotted "radio3; menuselect2"
alias help "radio3; menuselect3"
alias sclear "radio3; menuselect4"
alias inpos "radio3; menuselect5"
alias reporting "radio3; menuselect6"
alias blow "radio3; menuselect7"
alias neg "radio3; menuselect8"
alias enedown "radio3; menuselect9"

bind "x" "cover"
bind "x" "point"
bind "x" "holdpos"
bind "x" "regroup"
bind "x" "follow"
bind "x" "takingfire"
bind "x" "go"
bind "x" "fall"
bind "x" "stick"
bind "x" "getinpos"
bind "x" "storm"
bind "x" "rein"
bind "x" "affirm"
bind "x" "spotted"
bind "x" "help"
bind "x" "sclear"
bind "x" "inpos"
bind "x" "reporting"
bind "x" "blow"
bind "x" "neg"
bind "x" "enedown"

top



Script name: Weapon Buy Script
Description: These aliases simply purchase a weapon. The team-.... aliases denote that it will purchase either the CT or T varient of a weapon niche. EG: team-heavy-rifle would buy and AUG for the CT's, and a Commando for the T's.

Download: here

With thanks to: RzE

the script:
alias deagle "buy; menuselect 1; menuselect 3"
alias p228 "buy; menuselect 1; menuselect 4"
alias elite "buy; menuselect 1; menuselect 5"
alias m3 "buy; menuselect 2; menuselect 1"
alias xm1014 "buy; menuselect 2; menuselect 2"
alias team-smg "buy; menuselect 3; menuselect 2;
buy; menuselect 3; menuselect 4"
alias mp5 "buy; menuselect 3; menuselect 1"
alias p90 "buy; menuselect 3; menuselect 3"
alias team-light-rifle "buy; menuselect 4;
menuselect 3; buy; menuselect 4; menuselect 1"
alias team-heavy-rifle "buy; menuselect 4;
menuselect 4; buy; menuselect 4; menuselect 2"
alias scout "buy; menuselect 4; menuselect 5"
alias awp "buy; menuselect 4; menuselect 6"
alias g3 "buy; menuselect 4; menuselect 7"
alias m249 "buy; menuselect 5; menuselect 1"
z bind "x" "deagle"

bind "x" "p228"

bind "x" "elite"

bind "x" "team-smg"

bind "x" "mp5"

bind "x" "p90"

bind "x" "m3"

bind "x" "xm1014"

bind "x" "team-light-rifle"

bind "x" "team-heavy-rifle"

bind "x" "scout"

bind "x" "awp"

bind "x" "g3"

bind "x" "m249"

top



Script name: Jump Clear
Description: This script should replace your normal jump, it clears menus (radio, changeteam, and buy). This should be used with the buy scripts above.

Download: here

With thanks to: RzE

the script:
alias +jumpcl "+jump; slot10"
alias -jumpcl "-jump"

bind "x" "+jumpcl"

top



Script name: Weapon Switcher
Description: This switches the weapon whenever you execute the alias. Perfect for mousewheel's.

Download: here

With thanks to: RzE

the script:
alias mwu "invprev; +attack; wait; -attack"
alias mwd "invnext; +attack; wait; -attack"

bind "x" "mwu"
bind "x" "mwd"

top



Script name: Knife-Run-Last-Gun · control
Description: Press x once to switch to your knife (which makes you run faster), then hit x again to change back to your previous weapon.

Download: here

With thanks to: vladn

the script:
alias +knife "use weapon_knife"
alias -knife bind "x" +knifeoff
alias +knifeoff "lastinv"
alias -knifeoff bind "x" +knife
bind "x" +knife

top



Script name: Burst Script
Description: I havn't tested this yet but it was posted on Z_Malloc's forum. WARNING some people do consider this cheating so it's up to you if you tell people your using it. Doesn't bother me cause I is l337 :oÞ

Download: here

With thanks to: theaim

the script:
alias single "+attack; wait; -attack"
alias burst "+attack; wait; wait; wait; wait; -attack"
bind mouse1 +attack
alias switch "bind mouse1 burst; bind enter switch2; developer 1; echo Burst fire; developer 0"
alias switch2 "bind mouse1 single; bind enter switch3; developer 1; echo Semi automatic fire; developer 0"
alias switch3 "bind mouse1 +attack; bind enter switch; developer 1; echo Full automatic fire; developer 0"

bind enter switch

top



Script name: Jump Duck Script
Description: Easily complete the Jump/Duck move, with the press of one key.

Download: here

With thanks to: [EMP]CaveDog

the script:
alias +jumpduck "+jump;+duck"
alias -jumpduck "-jump;-duck"
bind "x" "+jumpduck

top



Script name: Duck toggle Script
Description: Pressed once it will make you duck. Press again and you will stand again.

Download: here

With thanks to: [EMP]CaveDog

the script:
alias duck_on "alias duck duck_off; +duck"
alias duck_off "alias duck duck_on; -duck"
alias duck duck_on
bind x duck

top



Script name: Walk Toggle Script
Description: Pressed once it will make you walk. Press again and you will run again.

Download: here

With thanks to: [EMP]CaveDog

the script:
alias walk_on "alias walk walk_off; +speed"
alias walk_off "alias walk walk_on; -speed"
alias walk walk_on
bind x walk

top



Script name: Triple Exit Script
Description: No more pressing the quit button by accident and having to rejoin. You have to press it three times to leave the game. Very useful!

Download: here

With thanks to: [EMP]CaveDog

the script:

alias "ex1" "bind x ex2"
alias "ex2" "bind x ex3"
alias "ex3" "bind x ex1; wait; wait; exit"
bind "x" "ex1"

top



Script name: Invert Mouse Script
Description: If your like me you have to share a computer with friends or family and because I use the mouse inverted doesn't mean the other rabble do so one press of the button and the mouse will invert

Download: here

With thanks to: [EMP]CaveDog

the script:
alias normouse "m_pitch 0.022; alias swtchmouse invmouse; showmousenor"
alias invmouse "m_pitch -0.022; alias swtchmouse normouse; showmouseinv"
alias showmousenor "scr_conmessage Mouse Up/Down Axis Status : Normal"
alias showmouseinv "scr_conmessage Mouse Up/Down Axis Status : Inverted"
alias swtchmouse "normmouse"
scr_conmessage "Mouse Up/Down Axis : Normal"
scr_conmessage2 "By Eclipse Media Productions"

bind "x" "swtchmouse"

top



Script name: CS rcon v0.1
Description:

// Made and compiled by huckS

// Features

//C4 Time
//Map Length
//Friendly Fire
//Custom Messages
//Restart Round
//Freeze Time
//Map Change
//Kicking
//WON ID options
//Team Limiting
//TK Punishing
//Hostage killing punishing
/Force Chasecam

//Any ideas for future release mail me at huckan@ukfortress.com


//Instuctions
-------------
//Unzip rcon.cfg into your cstrike directory
//Make a new folder in your cstrike directory called "rcon"
//unzip all other contents into that folder

-------------

//Notice

//This will only work if you have server control given by the server admin!

Download: here

With thanks to: huckS

the script:
Download to view it, sorry - too long to put on here

top



 

 

 

 

 

 
©huckS. Config-World 2000-2001. News created by Newspro. Graphics by MrPain