Announcement

Collapse
No announcement yet.

Single grenade bind?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Single grenade bind?

    Hey all--

    Been fun re-acquainting myself online with everyone. ;->


    I would like to bind a key to release a single grenade & then switch immediately & automatically back to RL. What is the command?
    You're gonna need a bigger boat....

  • #2
    I personally used this, but it wasn't perfect.
    bind "key" "impulse 6; +attack; wait; wait; wait; -attack; impulse 7"
    I liked to use mwheelup for this, so my bind looked like this:
    bind "mwheelup" "impulse 6; +attack; wait; wait; wait; -attack; impulse 7"
    e|------------------------0---------------
    B|---------------0^1----------------1----
    G|---------------2------2------0^2-------
    D|---------------2-------2--2-------------
    A|---------------0------------------------
    E|----------------------------------------

    Comment


    • #3
      too many waits. One is good enough if any. The GL fires right when you use +attack. It's not like the AXE.

      Comment


      • #4
        Finny, best answer since you are using ProQuake:

        Get ProQuake 3.85 and just type:

        bind h + quickgrenade

        in the console, substituting h for the key or button you want to use.

        If you want to use another engine like Qrack or DarkPlaces or use ProQuake 3.50 here is the bind:

        alias +quickgrenade "-attack;wait;impulse 6;wait;+attack"
        alias -quickgrenade "-attack;wait;bestweapon 7 8 5 3 4 2 1"
        bind h +quickgrenade
        Quakeone.com - Being exactly one-half good and one-half evil has advantages. When a portal opens to the antimatter universe, my opposite is just me with a goatee.

        So while you guys all have to fight your anti-matter counterparts, me and my evil twin will be drinking a beer laughing at you guys ...

        Comment


        • #5
          switch manually, it's the best, don't be lazy

          Comment


          • #6
            Originally posted by Canadian*Sniper View Post
            too many waits. One is good enough if any. The GL fires right when you use +attack. It's not like the AXE.
            It depends on latency between you and the server. I find that even with 3 waits, that bind is next to useless if I'm playing around somewhere in Europe.
            e|------------------------0---------------
            B|---------------0^1----------------1----
            G|---------------2------2------0^2-------
            D|---------------2-------2--2-------------
            A|---------------0------------------------
            E|----------------------------------------

            Comment


            • #7
              i don't use any waits at all and works just fine.. even on usa servers..

              but you could use something like this:
              Code:
              //multy wait
              alias w0 ""
              alias w1 "wait"
              alias w2 "w1;w1"
              alias w3 "w2;w1"
              alias w4 "w3;w1"
              alias w5 "w4;w1"
              alias mw w0
              alias cycle_mw mwc0
              alias mwc0 "alias mw w0;alias cycle_mw mwc1;echo mw = 0"
              alias mwc1 "alias mw w1;alias cycle_mw mwc2;echo mw = 1"
              alias mwc2 "alias mw w2;alias cycle_mw mwc3;echo mw = 2"
              alias mwc3 "alias mw w3;alias cycle_mw mwc4;echo mw = 3"
              alias mwc4 "alias mw w4;alias cycle_mw mwc5;echo mw = 4"
              alias mwc5 "alias mw w5;alias cycle_mw mwc0;echo mw = 5"
              bind "whateverkey" "cycle_mw"
              
              //quick nade
              alias +nade "impulse 6;mw;+attack"
              alias -nade "-attack;mw;impulse 7"
              bind "whateverkey" +nade
              use the cycle_mw key to change the number of waits in the +nade bind on the fly..
              Last edited by =peg=; 12-12-2007, 09:41 PM.

              Comment


              • #8
                Hey Fin!

                Since you play runequake use +sattack6. +sattack6 switches to grenade then back to your previous weapon.

                SO:
                bind f "+sattack6"

                NOTE: +sattack applies to any weapon in runequake ( +sattack1 - +sattack8 ).

                Comment


                • #9
                  Thanks for reply everyone!

                  LOL--Tia.
                  I wrote this THREAD because I'm getting lazy!
                  :-P
                  You're gonna need a bigger boat....

                  Comment


                  • #10
                    Nothing wrong with being lazy. I was lazy from day 1.
                    e|------------------------0---------------
                    B|---------------0^1----------------1----
                    G|---------------2------2------0^2-------
                    D|---------------2-------2--2-------------
                    A|---------------0------------------------
                    E|----------------------------------------

                    Comment

                    Working...
                    X