Jump to content

Home

How do you bind more than 1 thing to a key?


Bejit

Recommended Posts

I know I have to script it, but can you give me an example? How do you add kick to a script? And whenever I run a script it never stops until I close the game, even though I but the two // and the beginning and end.:confused: :confused: :mob::explode:

Link to comment
Share on other sites

I.E bind (key) "set model reborn; +taunt;-taunt;"

 

this one sets you skin to a reborn skin and makes a taunt at the same time, u need to end taunt(or another action) with an "-" or else it will keep on goin until you exit the game.

I wont show you how to do a kick script, because I think it ruins the game if you are "cheating"...:bdroid1:

Link to comment
Share on other sites

  • 2 weeks later...

Kick Scripts and such are considered cheating, by purists like myself and most purists like me.

 

Anyway theyre all over the Q3 pages if you hunt them.

 

Another good way to bind multiple commands to a single key is like so

(I use this to bind a key to "speech" used in Capture the Flag.

This, and other scripts CAN get you kicked off servers so be careful, if it says XServer from -=X=- eXecutioners clan, forget it, youre toast.

 

//chat.cfg

//by: Firemann816

//

// Define Speech

//

// Routine things:

set +Hello "say Hello Everyone"

set Hello "vstr +Hello"

bind 5 "vstr Hello"

//

set +LoL "say LOL"

set lol "vstr +LoL"

bind 6 "vstr lol"

//

set +nk "say Nice Kill"

set NK "vstr +nk"

bind 7 "vstr NK"

//

set +Incoming "say_team Incoming"

set Incoming "vstr +Incoming"

bind 8 "vstr Incoming"

//

set +gofb "say_team Get Our Flag Back"

set GOFB "vstr +gofb"

bind 9 "vstr GOFB"

//

set +gg "say Gotta Go - Good Night Everyone"

set GG "vstr +gg"

bind 0 "vstr GG"

 

Put it in a text flie, name it chat.cfg, move it to your base dir, and from the console type "exec chat.cfg"

 

If you get dc'd from the server you didnt read their MOTD, warning you they run script protection.

 

Use with caution,

Firemann816

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...