Difference between revisions of "Chainfiring"

From Vendetta Online Wiki
Jump to: navigation, search
m (Code:)
m (Code:)
Line 23: Line 23:
 
  alias lockhxfire "inffirehx; alias togglehxfire unlockhxfire"
 
  alias lockhxfire "inffirehx; alias togglehxfire unlockhxfire"
 
  alias unlockhxfire "stopfire; alias togglehxfire lockhxfire"
 
  alias unlockhxfire "stopfire; alias togglehxfire lockhxfire"
  alias hxfire "unlockhxfire; alias +primaryfire togglehxfire; alias +secondaryfire +Shoot3; alias -secondaryfire '+Shoot3 0'; echo '******** 2xPlasmaHX infinite chainfiring lock'"
+
  alias hxfire "unlockhxfire; alias +primaryfire togglehxfire; alias -primaryfire ' '; alias +secondaryfire +Shoot3; alias -secondaryfire '+Shoot3 0'; echo '******** 2xPlasmaHX infinite chainfiring lock'"
 
   
 
   
 
  bind 1 normfire
 
  bind 1 normfire

Revision as of 22:14, 11 July 2006

These binds allow you to change firing mode

What is chainfiring?

Usually if you fly a vulture with 2 neuts they fire 2 shots at a time. If you enter station and go to ship's ports settings you can set right mouse button to fire from one port and left button to fire from both ports. Now, if you in space quickly press right button, release it, then left button you will get chainfiring effect (Left port shoots-Right port shoots-Left-Right-Left-Right)

Thanks my mentor firsm for teaching me this :)

Now let's try to automate it...

Code:

alias chainfireneut "alias fire2 '+Shoot2'; +Shoot1; wait 0.07 fire2"
alias chainfirelawneut "alias fire2 '+Shoot2'; +Shoot1; wait 0.065 fire2"
alias chainfireaxia "alias fire2 '+Shoot2; wait 0.07 fire3'; alias fire3 '+Shoot3'; +Shoot1; wait 0.07 fire2"
alias inffirehx "alias fire1 '+Shoot1; +Shoot2 0; wait 0.16 fire2'; alias fire2 '+Shoot2; +Shoot1 0; wait 0.16 fire1'; fire1"

alias stopfire "alias fire1 ' '; alias fire2 ' '; alias fire3 ' '; +Shoot1 0; +Shoot2 0; +Shoot3 0" 

alias normfire "alias +primaryfire +Shoot2; alias -primaryfire '+Shoot2 0'; alias +secondaryfire +Shoot1; alias -secondaryfire '+Shoot1 0'; echo '******** Normal firing'"
alias revfire "alias +primaryfire +Shoot1; alias -primaryfire '+Shoot1 0'; alias +secondaryfire +Shoot2; alias -secondaryfire '+Shoot2 0'; echo '******** Reverse firing'"
alias neutfire "alias +primaryfire chainfireneut; alias -primaryfire 'stopfire'; alias +secondaryfire +Shoot3; alias -secondaryfire '+Shoot3 0'; echo '******** 2xNeuts chainfiring'"
alias lawneutfire "alias +primaryfire chainfirelawneut; alias -primaryfire stopfire; alias +secondaryfire +Shoot3; alias -secondaryfire '+Shoot3 0'; echo '******** 2xLawNeuts chainfiring'"
alias axiafire "alias +primaryfire chainfireaxia; alias -primaryfire stopfire; alias +secondaryfire ' '; echo '******** 3xAxiaPosi chainfiring'"
alias lockhxfire "inffirehx; alias togglehxfire unlockhxfire"
alias unlockhxfire "stopfire; alias togglehxfire lockhxfire"
alias hxfire "unlockhxfire; alias +primaryfire togglehxfire; alias -primaryfire ' '; alias +secondaryfire +Shoot3; alias -secondaryfire '+Shoot3 0'; echo '******** 2xPlasmaHX infinite chainfiring lock'"

bind 1 normfire
bind 2 revfire
bind 3 neutfire
bind 4 lawneutfire
bind 5 axiafire
bind 6 hxfire

normfire

bind LMBUTTON +primaryfire
bind RMBUTTON +secondaryfire

Firing modes

Here we defined 6 firing modes and bound them to keys with digits 1-6. If you don't use mouse buttons for firing, bind +primaryfire and +secondaryfire accordingly

Mode Description
normfire Use your buttons as usual
revfire Swaps your left and right button so if you have hog or atlas with AGT or MegaPosi with flares you don't need to mess with port settings to bind AFT fire to left button
neutfire Chainfiring with 2 neutrons MkII or MkIII. In port setup set primary fire as left port and secondary as right port (actually you can leave primary fire as both ports). If you have a 3rd port (valk, maud), set tertiary fire as middle port. Use left button for chainfiring neuts, right button to fire 3rd weapon
lawneutfire Law enforcement guns have less delay. This mode is similar for neutfire
axiafire For valks with 3 Axia Accelerated Positron blasters. Set each of primary, secondary and tertiary fire as separated ports
hxfire This mode is for Plasma HX. It not just sets chainfiring but also has effect of decreasing cannon's delay so the drain of 2 plasmas is 50. Press left button to fire, sleep until leviathan dies, press left button again to stop firing.

Credit

Created by LXj.

I hope someone with better English will edit this article :)