Editing MissileAttack

From Eternity Wiki
Jump to navigationJump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
{{codepointer
'''MissileAttack'''(''name'', ''type'', ''zofs'', ''aofs'', ''melee'')
|description=Very powerful parameterized monster projectile attack pointer. Can be used to create standard attacks or angular spreads, with or without homing. Can fire missiles at a customized height, and can optionally chain to another state when the object is within melee range of its target, allowing situational attacks like those used by the Imp, Baron, and Cacodemon. The ''melee'' parameter should be set to -1 unless a valid frame name is provided, otherwise the object will disappear forever on melee. It's almost never desirable to leave ''melee'' in its default value.


'''Homing''' missiles must also have the '''SEEKERMISSILE''' flag set and a homing maintenance pointer (e.g. [[Tracer]], [[GenTracer]], [[HticTracer]]) in their frames.
==Parameter information==
|usage='''MissileAttack'''(''name'', ''type'', ''zofs'', ''aofs'', ''melee'')
*''name'' = Name of thing type to fire (no default, must be valid)  
|parameters=*''name'' = Name of thing type to fire (no default, must be valid)  
*''type'' = Select homing property (default of 0 = 0)  
*''type'' = Select homing property (default of 0 = 0)  
**0 or '''normal''' = will not home  
**0 or '''normal''' = will not home  
Line 11: Line 9:
*''aofs'' = Amount to add to actor angle in degrees (default of 0 = 0, can be negative)  
*''aofs'' = Amount to add to actor angle in degrees (default of 0 = 0, can be negative)  
*''melee'' = Frame state to enter for optional melee attack (default of 0 = 0: will disappear; negative values = no melee attack)  
*''melee'' = Frame state to enter for optional melee attack (default of 0 = 0: will disappear; negative values = no melee attack)  
|examples=
 
==Purpose==
Very powerful parameterized monster projectile attack pointer. Can be used to create standard attacks or angular spreads, with or without homing. Can fire missiles at a customized height, and can optionally chain to another state when the object is within melee range of its target, allowing situational attacks like those used by the Imp, Baron, and Cacodemon. The ''melee'' parameter should be set to -1 unless a valid frame name is provided, otherwise the object will disappear forever on melee. It's almost never desirable to leave ''melee'' in its default value.
 
'''Homing''' missiles must also have the '''SEEKERMISSILE''' flag set and a homing maintenance pointer (e.g. [[Tracer]], [[GenTracer]], [[HticTracer]]) in their frames.
 
==Example==
This is a line from a Decorate state definition of a spiderdemon lookalike, that fires a BFG9000 projectile:
This is a line from a Decorate state definition of a spiderdemon lookalike, that fires a BFG9000 projectile:
  SPID H 4 Bright A_MissileAttack(BFGShot, normal, 0, 0, -1)
  SPID H 4 Bright A_MissileAttack(BFGShot, normal, 0, 0, -1)
|seealso=
 
==See also==
*[[AproxDistance]]: generalized way of deciding based on distance to target.
*[[AproxDistance]]: generalized way of deciding based on distance to target.
*[[BulletAttack]]: hitscan counterpart.
*[[BulletAttack]]: hitscan counterpart.
Line 21: Line 26:
*[[Scratch]]: melee counterpart.
*[[Scratch]]: melee counterpart.
*[[SteamSpawn]]: usable for non-missile special effects.
*[[SteamSpawn]]: usable for non-missile special effects.
}}
 
[[Category:Codepointers]]
Please note that all contributions to Eternity Wiki are considered to be released under the GNU Free Documentation License 1.2 (see Eternity Wiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!
Cancel Editing help (opens in new window)

Template used on this page: