View Single Post
Old 10-01-2007, 09:43 AM   #38
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 PorkChopVII
well ya, but was writing for only few bits of of code, works but as progressive testing, seems to cause some abnormalities. but none the less withonly 5 lines of code did accomplish that, just for some reason worked for the pgdn key but when using a differnet key, wouldnt work and freeze movement. but none the less ill figure it out. i like doin things different
Yeah, because of the waits. I'm trying to find the minimum amout of waits, to avoid the movement freeze.

**********************************************

Ok, I know you said you don't like this one, but i finished it, and I'll put it here for ppl.

Code:
//////////////////////////////////////////////////////////////////
//								//
// Spamming Grenades:						//
//								//
// bind "" "sp_1_2"	Throws 2 primary grenades		//
// bind "" "sp_1_3"	Throws 3 primary grenades		//
// bind "" "sp_1_4"	Throws 4 primary grenades		//
//								//
// bind "" "sp_2_2"	Throws 2 Secondary grenades		//
// bind "" "sp_2_3"	Throws 3 Secondary grenades		//
// bind "" "sp_2_4"	Throws 4 Secondary grenades		//
//								//
// bind "" "sp_3_2"	Throws 1 primary and secondary grenade	//
// bind "" "sp_3_4"	Throws 2 primary and secondary grenades	//
//								//
// bind "" "spamall"	Throws all grenades			//
//								//
//////////////////////////////////////////////////////////////////

//***************************
//---------- Waits ----------
//***************************
alias "WC"	"wait; wait"	// 0.02 Secs
alias "WM"	"wc; wait"	// 0.03 Secs
alias "WL"	"wm; wc"	// 0.05 Secs
alias "WEL"	"wl; wl"	// 0.1 Sec
alias "MW"	"WEL; WEL"	// 0.2 Secs

alias "0.5s"	"MW; MW; WEL"


//************************
//------- Grenades -------
//************************

alias n1	"+gren1; WM; -gren1"
alias n2	"+gren2; WM; -gren2"

alias swait	"0.5s"

//======================
//---- Primary Gren ----
//======================

alias sp_1_2	"n1; swait; n1"
alias sp_1_3	"n1; swait; n1; swait; n1"
alias sp_1_4	"n1; swait; n1; swait; n1; swait; n1"

//========================
//---- Secondary Gren ----
//========================

alias sp_2_2	"n2; swait; n2"
alias sp_2_3	"n2; swait; n2; swait; n2"
alias sp_2_4	"n2; swait; n2; swait; n2; swait; n2"

//=====================
//---- Mixed Grens ----
//=====================

alias sp_3_2	"n1; swait; n2"
alias sp_3_4	"n1; swait; n2; swait; n1; swait; n2"

alias spamall 	"sp_1_4; swait; sp_2_4"

************************************************** **********

Quote:
Originally Posted by GhostBuster
Che sobre lo de las speeds del spy, necesito uno q sea f1 solly f2 engy f3 demo f4 scout f5 hw asi del enemy team pero... vos me pasaste en q automaticamente me cambie la speed, no q si toco tal boton me vuelve a la speed original, tonces es un bajon pq si me fichan no puedo correr posta... haceme si podes uno q sea las speeds y que si toco el + del numpad me vuelva a la original o al finjido, o sino con + y - del numpad como puedas.
Code:
alias +solly	"cl_forwardspeed 235; cl_sidespeed 235; cl_backspeed 235"
alias -solly	"cl_forwardspeed 400; cl_sidespeed 400; cl_backspeed 400"

bind "" "+solly"
manteniendo apretado te moves como solly, cuando soltas vas normal.

Last edited by DarK_TaO; 10-01-2007 at 08:46 PM.
DarK_TaO is offline   Reply With Quote