Difference between revisions of "Classes:GatlingGun"

From ECWolf Wiki
m (Typo)
Line 14: Line 14:
 
  actor <u>GatlingGun</u> : {{Class|WolfWeapon}} 61
 
  actor <u>GatlingGun</u> : {{Class|WolfWeapon}} 61
 
  {
 
  {
   {{property|attacksound}} "weapon/gatling/attack"
+
   {{property|AttackSound}} "weapon/gatling/attack"
 
   {{property|inventory.icon}} "GATLGUN"
 
   {{property|inventory.icon}} "GATLGUN"
 
   {{property|inventory.pickupsound}} "weapon/gatling/pickup"
 
   {{property|inventory.pickupsound}} "weapon/gatling/pickup"

Revision as of 14:23, 20 February 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.
Gatling Gun
Actor type Weapon Game MiniWolf3DLogoIcon.png
DoomEd Number 61 Class Name GatlingGun


Classes: ActorInventoryWeaponWolfWeaponGatlingGun
 →BlueGatlingGun

Overview

Rapid fire bullet weapon. The ultimate weapon in Wolfenstein 3D.

DECORATE Definition

actor GatlingGun : WolfWeapon 61
{
  AttackSound "weapon/gatling/attack"
  inventory.icon "GATLGUN"
  inventory.pickupsound "weapon/gatling/pickup"
  weapon.selectionorder 700
  -WEAPON.NOGRIN
  states
  {
    Spawn:
      CGUN A -1
      stop
    Ready:
      CHGG A 1 A_WeaponReady
      loop
    Fire:
      CHGG B 3
    Hold:
      CHGG CD 3 bright A_GunAttack
      CHGG E 3 A_ReFire
      goto Ready
  }
}