Script Blocking Enabled?

HighnoHighno Join Date: 2004-01-29 Member: 25706Members
I have the simple command
bind "q" "+attack; slot1"
to leap and attack instantly
but on some servers i cant use this bind


WHY?

Comments

  • BobTheJanitorBobTheJanitor Join Date: 2003-12-10 Member: 24228Members, NS1 Playtester
    Possibly add a 'wait' in there. It may be executing too fast for the server to pick up on it.
  • ForlornForlorn Join Date: 2002-11-01 Member: 2634Banned
    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.
  • coriscoris Join Date: 2003-07-08 Member: 18034Members, Constellation
    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"
  • HighnoHighno Join Date: 2004-01-29 Member: 25706Members
    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

    good idea though
    ill give it a try
Sign In or Register to comment.