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.
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-->
<!--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-->
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.
a_civilianLikes seeing numbersJoin Date: 2003-01-08Member: 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)
SinSpawnHarbinger of SufferingJoin Date: 2002-11-12Member: 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-->
Comments
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-->
do you want this to be a single key solution or what? Beyond lastinv, what are you wanting?
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.
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-->
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)
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-->
alias -WTH "alias _special"
alias WTH "lastinv; wait; special"<!--c2--></td></tr></table><div class='postcolor'><!--ec2-->
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.