View Single Post
Old 09-28-2007, 02:07 AM   #31
DarK_TaO
Mapper ^^
 
Join Date: Apr 2007
Location: yes (:
Posts Rated Helpful 0 Times
Send a message via ICQ to DarK_TaO Send a message via MSN to DarK_TaO
Quote:
Originally Posted by Dr.Satan
Love your scripts DarK_TaO

One thing i wanted to add is the in game the control key is CTRL not CNTRL script should be:


Code:
//=======================
//---- Toggle Crouch ----
//=======================

alias crouch+	"+duck; wait; alias crouch crouch-"
alias crouch-	"-duck; wait; alias crouch crouch+"

bind "CTRL" "crouch+"
Oh, thanx. Corrected ^^

Your new request:

Code:
//=======================
//---- Toggle Crouch ----
//=======================

alias crouch+	"+duck; wait; alias crouch crouch-"
alias crouch-	"-duck; wait; alias crouch crouch+"
alias crouch	"crouch+"

alias tg_on	"alias crouch crouch+; alias toggle tg_off"
alias tg_off	"alias crouch +duck; alias toggle tg_on"
alias toggle	"tg_on"

bind "CTRL" 	"crouch"
bind "SHIFT" 	"toggle"
Shift to turn on/off toggle. Control, to duck, or toggle duck if toggle is on

Last edited by DarK_TaO; 09-30-2007 at 03:08 PM.
DarK_TaO is offline   Reply With Quote