Login x
User Name:
Password:
Social Links Facebook Twitter YouTube Steam RSS News Feeds

Members Online

»
0 Active | 13 Guests
Online:

LATEST FORUM THREADS

»
warfare
CoD4 Map + Mod Releases
Voting menu on maps
CoD+UO General
Hauling 911
CoDBO3 General

Forums

»

Welcome to the MODSonline.com forums. Looking for Frequently Asked Questions? Check out our FAQs section or search it out using the SEARCH link below. If you are new here, you may want to check out our rules and this great user's guide to the forums and the website.
For more mapping and modding information, see our Wiki: MODSonWiki.com

Jump To:
Forum: All Forums : Soldier of Fortune
Category: SoFII General
General game questions, comments and chat.
Moderators: foyleman, Foxhound, Mystic, StrYdeR, batistablr, Welshy, DrBiggzz, supersword
Latest Posts
Subscribed Posts
Search
Restricted Access Topic is Locked
Page
Next Page
subscribe
Author Topic: binding keys
brutulman~rb
General Member
Since: Dec 23, 2006
Posts: 10
Last: Dec 23, 2006
[view latest posts]
Level 0
Category: SoFII General
Posted: Sunday, Sep. 7, 2003 05:10 pm
Hi guys,

I've a question about binding keys. Is it possible to bind the jump-, and crouch key so you can jump higher with only one button (key)?

If I'm looking in the game there are some guys that can jump high in a fast matter of time I'm thinking it must be possible.

So, please help me. Thanx
Share |
cdonov06~rb
General Member
Since: Dec 23, 2006
Posts: 418
Last: Dec 23, 2006
[view latest posts]
Level 5
Category: SoFII General
Posted: Sunday, Sep. 7, 2003 05:33 pm
yes... there is....I got this from NoLogic (he's the man)

The below bind allows for a high jump to be preformed in one key press rather than using the normal two key press method.

// Jump Crouch

bind x "+moveup; wait 4; -moveup; wait 4; +movedown; wait 4; -movedown"

// Jump Crouch

bind x "+moveup; wait 8; -moveup; +movedown; wait 4; -movedown"


The below script allows a player to lock them selves into a crouched position until the press the key again.

// Crouch Lock
 set md_01 "set crouch vstr md_02; +movedown"
 set md_02 "set crouch vstr md_01; -movedown"
vstr md_02 // Default

bind x "vstr crouch" // Crouch Toggle


The below script is a combination of the above scripts. This allows you to be able to preform a high jump from a fully crouched position, and to stand up right afterwards.

// Advanced Crouch Lock & Jump Crouch Combo
 set md_01 "set crouch vstr md_02; +movedown"
 set md_02 "set crouch vstr md_01; -movedown"
vstr md_02 // Default

 set jump "vstr md_02; +moveup; wait 8; -moveup; +movedown; wait 4; -movedown"

bind x "vstr crouch" // Crouch Lock
bind x "vstr jump"   // Jump Crouch


The below script allows you to lock your self leaning to ether side, while allowing you to automaticly come out of it by moving ether forward or backward.

// Advanced Lean Lock
 set ll_01 "set ll_f vstr ll_02; vstr rl_02; +leanleft"
 set ll_02 "set ll_f vstr ll_01; -leanleft"
 set ll_f "vstr ll_01"

 set rl_01 "set rl_f vstr rl_02; vstr ll_02; +leanright"
 set rl_02 "set rl_f vstr rl_01; -leanright"
 set rl_f "vstr rl_01"

 set null "vstr ll_02; vstr rl_02"

bind w "+forward; vstr null" // Walk Forwards
bind s "+back; vstr null"    // Walk Backwards
bind a "+moveleft"           // Strife Left
bind d "+moveright"          // Strife Right
bind q "vstr ll_f"           // Lean Left
bind e "vstr rl_f"           // Lean Right
Share |
cdonov06~rb
General Member
Since: Dec 23, 2006
Posts: 418
Last: Dec 23, 2006
[view latest posts]
Level 5
Category: SoFII General
Posted: Sunday, Sep. 7, 2003 05:34 pm
where it say bind x... make "x" whatever key you want
Share |
brutulman~rb
General Member
Since: Dec 23, 2006
Posts: 10
Last: Dec 23, 2006
[view latest posts]
Level 0
Category: SoFII General
Posted: Sunday, Sep. 7, 2003 10:37 pm
:s8: hi guys,

The binding of those keys worked perfect.
Is it also possible to load this binding automatic everytime I'm running the game.

Thanx m8
Share |
PsychoMark~rb
General Member
Since: Dec 23, 2006
Posts: 215
Last: Dec 23, 2006
[view latest posts]
Level 4
Category: SoFII General
Posted: Monday, Sep. 8, 2003 07:47 am
Put them in a file named <SOF2 folder>\base\mp\autoexec.cfg. If it doesn't exist yet, simply create it...
Share |
cdonov06~rb
General Member
Since: Dec 23, 2006
Posts: 418
Last: Dec 23, 2006
[view latest posts]
Level 5
Category: SoFII General
Posted: Monday, Sep. 8, 2003 04:59 pm
Quote (PsychoMark @ Sep. 08 2003, 2:47 am)
Put them in a file named <SOF2 folder>\base\mp\autoexec.cfg. If it doesn't exist yet, simply create it...

or just copy/paste them into your sof2mp.cfg files in place of where you're jump and crouch binds are. this is what mine looks like
------------------------
bind ` "toggleconsole"
// Advanced Lean Lock
set ll_01 "set ll_f vstr ll_02; vstr rl_02; +leanleft"
set ll_02 "set ll_f vstr ll_01; -leanleft"
set ll_f "vstr ll_01"
set rl_01 "set rl_f vstr rl_02; vstr ll_02; +leanright"
set rl_02 "set rl_f vstr rl_01; -leanright"
set rl_f "vstr rl_01"
set null "vstr ll_02; vstr rl_02"
bind w "+forward; vstr null" // Walk Forwards
bind s "+back; vstr null"    // Walk Backwards
bind a "+moveleft"           // Strife Left
bind d "+moveright"          // Strife Right
bind q "vstr ll_f"           // Lean Left
bind e "vstr rl_f"           // Lean Right
----------other binds----------------
// Advanced Crouch Lock & Jump Crouch Combo
set md_01 "set crouch vstr md_02; +movedown"
set md_02 "set crouch vstr md_01; -movedown"
vstr md_02 // Default
set jump "vstr md_02; +moveup; wait 8; -moveup; +movedown; wait 4; -movedown"
bind CTRL "vstr crouch"
bind SHIFT "vstr jump"
Share |
Beefyman~rb
General Member
Since: Dec 23, 2006
Posts: 895
Last: Dec 23, 2006
[view latest posts]
Level 7
Category: SoFII General
Posted: Monday, Sep. 8, 2003 06:11 pm
It would be wise to chang the lines that look like this:

----------other binds----------------

to this:

// ----------other binds----------------

in order to avoid errors.
Share |
cdonov06~rb
General Member
Since: Dec 23, 2006
Posts: 418
Last: Dec 23, 2006
[view latest posts]
Level 5
Category: SoFII General
Posted: Monday, Sep. 8, 2003 06:19 pm
lol, sorry... those arent actually in my cfg... i only wrote that so he didn't see other binds that dont get modified (to symbolize that the next section is below where the first was found). But i guess someone asking a question ABOUT binds might not know that... thanks beefy

p.s. - glad ur back
Share |
Beefyman~rb
General Member
Since: Dec 23, 2006
Posts: 895
Last: Dec 23, 2006
[view latest posts]
Level 7
Category: SoFII General
Posted: Monday, Sep. 8, 2003 06:20 pm
I don't know how long I'm back for, I'll try to show up more often... Work and school have just taken over most of my time for me, I'm off school today cuz I'm sick, gonna try to drug myself up for work though in 2 and a half hours...
Share |
cdonov06~rb
General Member
Since: Dec 23, 2006
Posts: 418
Last: Dec 23, 2006
[view latest posts]
Level 5
Category: SoFII General
Posted: Monday, Sep. 8, 2003 06:57 pm
lol, you in college or what? I'm at Providence College in RI
Share |
Restricted Access Topic is Locked
Page
Next Page
subscribe
MODSonline.com Forums : Soldier of Fortune : SoFII General

Latest Syndicated News

»
Codutility.com up and runn...
Nice, and there still using the logo and template for the screenshots, which...
Codutility.com up and runn...
dundy writes...Quote:Call of Duty modding and mapping is barly alive only a ...
Codutility.com up and runn...
Mystic writes...Quote:It seems to me the like the site is completely dead? ...
Codutility.com up and runn...
It seems to me the like the site is completely dead?

Partners & Friends

»