PROJ WORKSLIKE: Difference between revisions

From EDukeWiki
Jump to navigation Jump to search
Mblackwell (talk | contribs)
mNo edit summary
 
Mblackwell (talk | contribs)
mNo edit summary
Line 30: Line 30:
Syntax is:
Syntax is:


defineprojectile <tile number> PROJ_WORKSLIKE <flag value>
[[defineprojectile]] <tile number> PROJ_WORKSLIKE <flag value>




Add all the desired flags together, and use that value for <flag value>. This works similar to [[cstat]].
Add all the desired flags together, and use that value for <flag value>. This works similar to [[cstat]].

Revision as of 21:42, 23 December 2004

PROJ_WORKSLIKE is a defineprojectile property used to set flags for projectile function. The flags (defined) are:

define WORKSLIKEBULLET 1

define WORKSLIKERPG 2

define WORKSLIKEBOUNCESOFFWALLS 4

define WORKSLIKEBOUNCESOFFMIRRORS 8

define WORKSLIKEKNEE 16

define WORKSLIKEWATERBUBBLES 32

define WORKSLIKENOENEMYHITS 128

define WORKSLIKESPIT 256

define WORKSLIKECOOLEXPLOSION1 512

define WORKSLIKEBLOOD 1024

define WORKSLIKELOSESVELOCITY 2048

define WORKSLIKENOAIM 4096

define WORKSLIKERANDDECALSIZE 8192


Syntax is:

defineprojectile <tile number> PROJ_WORKSLIKE <flag value>


Add all the desired flags together, and use that value for <flag value>. This works similar to cstat.