_special Script Needed For B6 Bug Testing

todd1Oktodd1Ok Join Date: 2004-04-19 Member: 28018Members, Constellation, NS2 Playtester
Need a script that will switch extremly fast between weapons. dosnt have to be a special script, just something that will make me be able to switch between weapons and back really fast. any and all help appreciated, thanks.

Comments

  • ObstObst Join Date: 2003-03-12 Member: 14436Members, Constellation
    Use a "repeating" key (backspace) to bind it to lastinv or such <!--emo&;)--><img src='http://www.unknownworlds.com/forums/html/emoticons/wink-fix.gif' border='0' style='vertical-align:middle' alt='wink-fix.gif' /><!--endemo-->
  • coriscoris Join Date: 2003-07-08 Member: 18034Members, Constellation
    <!--QuoteBegin-Obst+Feb 2 2005, 10:29 PM--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>QUOTE</b> (Obst @ Feb 2 2005, 10:29 PM)</td></tr><tr><td id='QUOTE'><!--QuoteEBegin--> Use a "repeating" key (backspace) to bind it to lastinv or such <!--emo&;)--><img src='http://www.unknownworlds.com/forums/html/emoticons/wink-fix.gif' border='0' style='vertical-align:middle' alt='wink-fix.gif' /><!--endemo--> <!--QuoteEnd--> </td></tr></table><div class='postcolor'> <!--QuoteEEnd-->
    That's not a _specialscript <!--emo&:(--><img src='http://www.unknownworlds.com/forums/html/emoticons/sad-fix.gif' border='0' style='vertical-align:middle' alt='sad-fix.gif' /><!--endemo-->
  • MrRadicalEdMrRadicalEd Turrent Master Join Date: 2004-08-13 Member: 30601Members
    hmm.. where to start?

    do you want this to be a single key solution or what? Beyond lastinv, what are you wanting?
  • todd1Oktodd1Ok Join Date: 2004-04-19 Member: 28018Members, Constellation, NS2 Playtester
    to be able to switch between weapons as fast as is possible, both client and server side. and to keep switching weapons for as long as the button is either tapped or held.
  • MrRadicalEdMrRadicalEd Turrent Master Join Date: 2004-08-13 Member: 30601Members
    well... any selection or all of them?

    A simple way of doing it is:

    alias +fastslots "slot1"
    alias -fastslots "slot2"

    tapping that switches between the two.. fast. It's not automatic, but it's something.
  • TrakenTraken Join Date: 2004-11-14 Member: 32797Members
    <!--c1--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>CODE</b> </td></tr><tr><td id='CODE'><!--ec1-->alias s1 "slot1; wait; slot2; wait; slot3; wait; slot4; wait"
    alias s2 "s1; s1; s1; s1; s1; s1; s1; s1; s1; s1; s1; s1; s1; s1; s1"
    alias s3 "s2; s2; s2; s2; s2; s2; s2; s2; s2; s2; s2; s2; s2; s2; s2"

    Then bind "s3" to a key and mash away.  Should work well enough<!--c2--></td></tr></table><div class='postcolor'><!--ec2-->
  • a_civiliana_civilian Likes seeing numbers Join Date: 2003-01-08 Member: 12041Members, NS1 Playtester, Playtest Lead
    edited February 2005
    Or just use a _special script:

    alias specialswitch "-attack2;invnext;+attack;wait;-attack;+attack2;"
    alias "+switch" "alias _special specialswitch;+attack2;"
    alias "-switch" "alias _special; -attack2;"


    But isn't _special disabled in beta 6? If so, you can bind a repeating key like backspace or pgdn to "invnext;+attack;wait;-attack;invnext;+attack;wait;-attack;invnext;+attack;wait;-attack;invnext;+attack;wait;-attack"

    (need multiple switches per cycle because repeating keys repeat quite a bit more slowly than _special)
  • SinSpawnSinSpawn Harbinger of Suffering Join Date: 2002-11-12 Member: 8359Members
    bind a "lastwep"
    alias lastwep "lastinv;lastinv"

    from current weapon to previous weapon back to current weapon, you don't even see the 2nd weapon <!--emo&:p--><img src='http://www.unknownworlds.com/forums/html/emoticons/tounge.gif' border='0' style='vertical-align:middle' alt='tounge.gif' /><!--endemo-->
  • UrdUrd Join Date: 2003-05-25 Member: 16696Members, Constellation
    <!--c1--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>CODE</b> </td></tr><tr><td id='CODE'><!--ec1-->alias +WTH "alias special WTH; special"
    alias -WTH "alias _special"
    alias WTH "lastinv; wait; special"<!--c2--></td></tr></table><div class='postcolor'><!--ec2-->
  • ReKReK Join Date: 2004-08-30 Member: 31058Members, Constellation, Reinforced - Shadow, WC 2013 - Silver
    <!--c1--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>CODE</b> </td></tr><tr><td id='CODE'><!--ec1-->alias switch "-attack2; slot1; wait; wait; slot2; wait; wait; slot3; wait; wait; slot4; +attack2"
    alias +switch "alias _special switch; +attack2"
    alias -switch "alias _special; -attack2"
    bind "key" "+switch"<!--c2--></td></tr></table><div class='postcolor'><!--ec2-->

    Change "key" to whatever and you're good to go.
Sign In or Register to comment.