I would rewrite your script so that it works like this:
alias switchbite "slot1; wait; +attack; wait; -attack" bind q "switchbite"
First of all, make it an alias so you can rebind it to differnt keys easily if you need to, next, call slot1 before attack or else you will use your old attack instead of slot1's attack, next put in an -attack or else you will never stop attacking, and finally put wait inbetween every command or else it will execute too fast.
I'd make the script like this actually alias weap1 "weapon_bitegun;weapon_bite2gun;weapon_spit;weapon_swipe;weapon_gore" alias +quickattack "weap1;wait;+attack" alias -quickattack "-attack" bind q "+quickattack"
but im still wondering why this works on some severs and on some it does not. if it does not work it does nothing on the q button not even an attack so i guess the problem is somewhere else or am i wrong?
i have put the "attack" before the "slot1" so i can make a short leapbite
Comments
alias switchbite "slot1; wait; +attack; wait; -attack"
bind q "switchbite"
First of all, make it an alias so you can rebind it to differnt keys easily if you need to, next, call slot1 before attack or else you will use your old attack instead of slot1's attack, next put in an -attack or else you will never stop attacking, and finally put wait inbetween every command or else it will execute too fast.
alias weap1 "weapon_bitegun;weapon_bite2gun;weapon_spit;weapon_swipe;weapon_gore"
alias +quickattack "weap1;wait;+attack"
alias -quickattack "-attack"
bind q "+quickattack"
if it does not work it does nothing on the q button not even an attack
so i guess the problem is somewhere else
or am i wrong?
i have put the "attack" before the "slot1" so i can make a short leapbite
good idea though
ill give it a try