Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
What binds do you use?
#41
ruplayer Wrote:[Image: take-a-chill-pill.jpg]
Oh, take one of mines...
Might like to change the chill pill medication, they don't seem very effective  ;D
[Image: 2ntzjn7.png]
silly (no sound): you need to learn
Zero: i taught you
silly (no sound): how to be cool like me
Zero: you knifed me when i retired
silly (no sound): I have hopes for you
silly (no sound): to be my apprentice
silly (no sound): my prodigy
silly (no sound): to carry on my legacy
silly (no sound): good luck padawan
silly (no sound): may the force be with you
Zero: lol
Zero: why you make it sound that you are never coming back alive master?
Zero: Tongue
silly (no sound): I will
silly (no sound): when you're ready
silly (no sound): to show me what you've learnt
silly (no sound): when you're a jedi
#42
I, The Rival Wrote:Jay thats why I said "if its too complicated, tell me and I can make diagrams and videos". Obviously if I go to the effort to write huge threads, then making pictures and videos really isn't more of an effort than that :|

Also Ruplayer brings up a good point. You should probably get them to shuffle the votemap plugin nominations, so that people can't exploit it like he is doing.
rival you are really one one of the most helpful guys ive seen, you put alot of effort into helping others, without complaining thats why i like you. On behalf of all the people you helped i say thank you.
lol
#43
Assassin Wrote:
I, The Rival Wrote:Jay thats why I said "if its too complicated, tell me and I can make diagrams and videos". Obviously if I go to the effort to write huge threads, then making pictures and videos really isn't more of an effort than that :|

Also Ruplayer brings up a good point. You should probably get them to shuffle the votemap plugin nominations, so that people can't exploit it like he is doing.
rival you are really one one of the most helpful guys ive seen, you put alot of effort into helping others, without complaining thats why i like you. On behalf of all the people you helped i say thank you.
lol

Yeah what he said. But don't put a heavy burden on yourself to solve everyone's problems man.
be the best version of yourself, that's all you can do.
#44
I, The Rival Wrote:I help all the time, yet people never read, or search for information themselves. How do you think you become knowledgeable about things? By searching for stuff, reading the information you find, or is readily given to you. It's the same thing with the autoexec tweak threads I wrote, the same thing with the rates thread I wrote. All the information was there, I explained it in the simplest way I could, and people still just asked me questions that were clearly answered.


If you want an answer about binds, fine, I'll give you one.


HOW DO I SHOT BINDS?!?!?!?!?!?


Using the scripting language provided in most Source games, you can bind pretty much any command to any key. The format usually works like this :

Code:
bind "key" "action"

You'll type this in console, or you can add it to your autoexec file (located in C:/Program Files/Steam/steamapps/OneTakeThomson/counterstrikesource/cstrike/cfg, where "OneTakeThomson" is your account name. For non Steam users, this would be in Counter Strike Source/cstrike/cfg). If you don't know what an autoexec file is, you can find out about it in the extensive thread I wrote here. That thread tells you how to create one, where to store it, and just the basic commands you can use in it. There is also another thread that is linked on there, which gives extensive client side cvars to tweak your graphics.

WHAT DO I DO NEXT?!?!?!?!

So now you have your autoexec open, and you want some binds. If you were clever, you'd have a binds section in your autoexec, like I have in that thread. There are a few ways you can use binds :

- Generally just binding one key to do one action. You already have several binds, you just wouldn't realise it. Pressing W to go forward is a bind. Pressing Y to text chat is a bind. There is an action behind each key, and by writing a tiny line of code, you can set any key on the keyboard to do any action in game.

- You can bind one key to do several actions. This is called a "script". The script will run when you press the key that is bound to it. For example, I have this "toggle chat" bind key, so that when I press Caps Lock once, it starts to transmit voice on my mic, and when I press it again, it turns it off.

- You can also bind values to increase/decrease by increment. Usually you'd just have one key, and pressing this key would cycle through several functions that you've set. One I can think of is if you wanted to have your cmdrate to cycle through, depending if you visit different servers. Pressing the key once would set it to 33, once again would set it to 66, and once more to 100.


Now with just those 3 types of binds, you can do quite a bit. Lets start with buying.


BUY BINDS

Using The Binds Built In To The Buy Window

So we all know that it's a long task buying things when you spawn in CS:S. There are 4 binds you can use through the games buy window. You buy the equipment you need, then click on which preset you want it to be saved to, so when you're in the buy window you can just press S, D, F or G.

For example, I have all 4 of mine set up like this :

- Pressing "S" in the buy menu will buy me - deagle, kevlar and helmet and a defuse kit
- Pressing "D" in the buy menu will buy me the previous, plus an M4/AK (depending on which team)
- Pressing "F" in the buy menu will buy me the "S" bind, plus a Scout
- Pressing "G" in the buy menu will buy me the "S" bind, plus an Awp.

Along with remembering certain combinations to buy other weapons (such as B 2 1 for Pump Shotgun, B 1 5 for Dual Elites on T side, B 3 1 for TMP on CT side), you can effectively cut down the time it takes to buy your kit to just a few seconds. Whilst everyone else is clicking (lol) the weapons that they want, you're already out of spawn and getting frags! There is no need to use this in your autoexec, it's configurable straight from the buy window. If you want to configure this, I suggest creating your own server on your machine, going in and just sorting it out from there.

THATS NOOB! SHOW ME THE REAL CODES!!!
How To Bind Using Autoexec

So if you dont want to use the Source buy window binds, then that's fair enough. You're limited to just 4 preset loadouts, so I wouldn't blame you if you wanted a bit more. What I'd suggest is using your keypad, binding a load of weapons to that. The keypad is pretty much useless (I use it for taunts), so it would make sense to just load it up with buy binds, right? You can also use arrow keys, the 6 above the arrows (Home, Insert etc), the "useless keys" (like []';#/,.), pretty much any key that isn't already used.


So lets say, you want to bind the key "P" to buy you a deagle. You'd open up your autoexec, and  make a new section marked "Binds" :

Code:
\\Binds//

Once you have that at the top, you know that everything below that is related to binds. That way you won't end up with a messy autoexec (I have seen some terrible ones). So then you'd type :

Code:
\\Binds//

bind "p" "buy deagle"  //Buys Night Hawk

That's literally it. I put the "//Buys Night Hawk" at the end because using "//" at the end of any line of script in your autoexec will stop console reading anything passed that point (only on that line though). It's just so you can make notes in your autoexec that you don't want console to try and load. It's helpful if you have a line of command that you might forget what it does.

So let me load you up with my keypad template, and I'll throw in a few weapon binds :

Code:
\\Binds//

////Numberpad (0-9)


bind "kp_ins" "buy deagle"   //0 - Buys Night Hawk
bind "kp_end" "buy ak47"   //1 - Buys CV-47
bind "kp_downarrow" "buy m4a1"  //2 - Buys M4 Carbine
bind "kp_pgdn" "buy awp"   //3 - Buys Magnum Sniper Rifle
bind "kp_leftarrow" "buy flashbang"    //4 - Buys Flashbang
bind "kp_5" "buy hegrenade "    //5 - Buys HE Grenade
bind "kp_rightarrow" "buy smokegrenade"   //6 - Buys Smoke Grenade
bind "kp_home" "buy defuser"    //7 - Buys Defuse Kit
bind "kp_uparrow" "buy vesthelm"    //8 - Buys Helmet & Kevlar
bind "kp_pgup" "buy m3"    //9 - Buys Pump Shotgun

That's just the only weapons I could think that I would need binded, plus all the grenades and defuse kit. So now you have all your binds, and they're all in your autoexec. All you do now is save the autoexec, and they'll be ready to use next time you play CS:S. Simples!

ROFL YOU NOOB! SHOW ME HOW TO INCREMENTVAR! SHOW ME HOW TO DO EVERYTHING!!!

Well, no. I'm not going to do that. The link that Jaycat provided has ample information about buying with CS:S, INCLUDING ALL THE WEAPON NAMES YOU'D USE IN AUTOEXEC. I just thought I'd write something out because it's pretty obvious no one's going to read that link. I checked it out, and it was really informative, so I can bet money no one here is gonna give a fuck. Either way, if you want me to carry on doing more of these threads, let me know. The next one would most likely be a bit more advanced, but it would be about a topic that a lot of people want to know about.
wow
#45
General and Zombiemod useful shortcuts
This is also includes binds and I have a command list there, a few useful commands, common used commands.
But this topic is focused on autoexec and buy command right?
Well, hope both of the bind topics useful.
mar_heave : Which David is performing some testing on the server?
M. Bison :That'd be me. I'm testing ways to destroy the server. :eek:

Ever played in PlagueFest server
[Image: 2dgqm84.png]
[Image: dejxg5dm1cglfstk5w.png]
#46
mar_heave Wrote:General and Zombiemod useful shortcuts
This is also includes binds and I have a command list there, a few useful commands, common used commands.
But this topic is focused on autoexec and buy command right?
Well, hope both of the bind topics useful.

Nice, when I update my other thread and do a bigger thread on Buy Binds, do you mind if I link this thread in that post? It looks very useful for Zombie Mod guys Smile
If you read this, you suck.
#47
bind "mouse1" "+attack; nominate cs_assault"
"Most people think time is like a river, that flows swift and sure in one direction. But I have seen the face of time, and I can tell you, they are wrong. Time is an ocean in a storm."
#48
v = !ztele
" = buy awp
mousewheell down =  crouch + jump
, = sm_slap admins 0 for hacking
[ = All terrorist must be out of T spawn by 1:30
] = All Ct's Try to Defuse or slay
p = !zspawn
up_arrow = sm_admin
left_arrow = ma_admin
right_arrow = rcon exec cevo.cfg
down_arrow = rcon zb_lo3
f11 = activate multihacks
#49
iSpy Wrote:v = !ztele
" = buy awp
mousewheell down =  crouch + jump
, = sm_slap admins 0 for hacking
[ = All terrorist must be out of T spawn by 1:30
] = All Ct's Try to Defuse or slay
p = !zspawn
up_arrow = sm_admin
left_arrow = ma_admin
right_arrow = rcon exec cevo.cfg
down_arrow = rcon zb_lo3
f11 = activate multihacks
is that why you get good suddenly, you toggle  :o
#50
Quote:is that why you get good suddenly, you toggle  :o

depends on what computer im using, thats why u see me sucking and sometimes killing all  the opposing team.

Users browsing this thread: 3 Guest(s)