Help With Blink?
Church
Meatshield grunt-fodder // Has pre-ordered NS2 Join Date: 2002-12-31 Member: 11646Members, Constellation
I'm trying to write a script that would switch my weapon to blink, and use blink as long as I hold down the mouse2 button, and then switch back to swipe when I let go. I'm new to scripting but am I at least on the right track?
alias +blink "slot2; +attack"
alias -blink "-attack; slot1"
bind mouse2 +blink
I'm not sure if I have to add in some 'waits' or anything.
alias +blink "slot2; +attack"
alias -blink "-attack; slot1"
bind mouse2 +blink
I'm not sure if I have to add in some 'waits' or anything.
Comments
alias -blink "-attack;"
Works good if you have <100 ping. I dont recomend auto-switching to slot1 in script, because it has very negative effects (like blocking you if you want to blink-bhop).
Meta works good with skript too:
alias +meta "slot3;wait;+attack"
alias -meta "-attack;wait;slot1;"
(hold to metabolize)
i easily toggle blink-swipe-blink-meta (etc)
no scripts are needed, the more scripting you do the bigger the chance a bug will occure and you won't be able to react in time
restrict the aliases to the minimum imo, no reason why you won't get used to it
You will get the weapon switch and lag no matter what.
However, if you have +attack done immediately after you do slot2, your guy executes it before it's possible to use it, and wastes energy.
Therefore to tweak your script:
<!--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 +blink "slot2; +attack"
alias -blink "-attack; slot1"
bind mouse2 +blink<!--c2--></td></tr></table><div class='postcolor'><!--ec2-->
to this:
<!--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 +blink "slot2; wait; +attack"
alias -blink "-attack; slot1"
bind mouse2 +blink<!--c2--></td></tr></table><div class='postcolor'><!--ec2-->
Act Chill: I can tap it with the script as well. My timing is just now a bit different from otehr peoples'.
alias -cool "slot1"
bind mouse2 +cool
Hold right click, it goes to blink, let go, it goes back to swipe. Just change the binds to your liking. I used this for about a week but I like manual better. Well I think that this is how it works heh. Cant remember. Also it goes in ur autoexec.cfg