bind x "+weapon1; +fire"
it shoots first and then hammers for some reason (edited) bind x "+weapon1; +fire"
it shoots first and then hammers for some reason (edited)+weapon1
and +fire
are only executed the next time input is sent. this means the order of +weapon1
and +fire
doesn't matter bind x "+prevweapon; +fire"
it does work+prevweapon
is handled differently from +weapon1
+fire; +prevweapon
does the same as +prevweapon; +fire
? @RudolfMonekey