Difference between revisions of "Classes:Knife"

From ECWolf Wiki
Line 18: Line 18:
 
   {{property|AttackSound}} "weapon/knife/attack"
 
   {{property|AttackSound}} "weapon/knife/attack"
 
   +{{flag|WEAPON.NOAUTOFIRE}}
 
   +{{flag|WEAPON.NOAUTOFIRE}}
 +
  +{{flag|WEAPON.NOALERT}}
 
   states
 
   states
 
   {
 
   {

Revision as of 05:48, 11 June 2013

Note: Wait! Stop! Before you copy this actor's definition into your mod, remember the following things:
  1. You do not need to copy that actor, since it is already defined.
  2. In fact, it's not just useless, it's actually harmful as it can cause problems.
  3. If you want to modify it, or use a modified version, using inheritance is the way to go.
  4. The actor definitions here are put on the wiki for reference purpose only. Learn from them, don't copy them.
  5. There is only one exception: if what you want is changing Ammo capacity, you need to create a new type from Ammo.
Knife
Actor type Weapon Game MiniWolf3DLogoIcon.png
DoomEd Number None Class Name Knife


Classes: ActorInventoryWeaponWolfWeaponKnife
 →Knife2

Overview

Standard melee weapon in Wolfenstein 3D.

DECORATE Definition

actor Knife : WolfWeapon
{
  inventory.icon "KNIFE"
  weapon.ammouse1 0
  weapon.selectionorder 3700
  AttackSound "weapon/knife/attack"
  +WEAPON.NOAUTOFIRE
  +WEAPON.NOALERT
  states
  {
    Ready:
      KNIF A 1 A_WeaponReady
      loop
    Fire:
      KNIF B 3
      KNIF C 3 A_CustomPunch(1, false, CPF_ALWAYSPLAYSOUND)
      KNIF DE 3
      goto Ready
  }
}