FireMissile: Difference between revisions

From Eternity Wiki
Jump to navigationJump to search
No edit summary
(templatized)
 
Line 1: Line 1:
'''FireMissile''' (void)
{{Codepointer |
 
description='''FireMissile''' is a player weapon codepointer. This codepointer implements the DOOM player's rocket launcher attack, which fires a single '''RocketShot''' projectile. |
==Usage==
usage='''FireMissile''' |
FireMissile is a player weapon codepointer. This codepointer implements the DOOM player's rocket launcher attack, which fires a single RocketShot projectile.
parameters=None. |
 
examples=
For a customizable version of this codepointer, see [[FirePlayerMissile]].
From ''base\frames.edf'':
 
<nowiki>frame S_MISSILE2      { cmp = "MISG|1|*|12|FireMissile|@next";      dehackednum = 61 }</nowiki> |
[[Category:Codepointers]]
notes=For a customizable version of this codepointer, see [[FirePlayerMissile]].|
seealso=*[[List_of_codepointers#Attacks|Player attack codepointers]]
}}

Latest revision as of 07:11, 24 January 2011

Description

FireMissile is a player weapon codepointer. This codepointer implements the DOOM player's rocket launcher attack, which fires a single RocketShot projectile.

Usage

FireMissile

Parameters

None.

Examples

From base\frames.edf:

frame S_MISSILE2      { cmp = "MISG|1|*|12|FireMissile|@next";       dehackednum = 61 }

Notes

For a customizable version of this codepointer, see FirePlayerMissile.

See also