Classes:Computer

From ZDoom Wiki
Jump to navigation Jump to search
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 will 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.
Computer
Actor type Breakable Game MiniStrifeLogoIcon.png (Strife)
DoomEd Number 182 Class Name Computer
Conversation ID 124 Puzzle Item ID N/A


Classes: Computer
This actor needs a description.

DECORATE definition

ACTOR Computer
{
  Health 80
  Speed 27
  Radius 26
  Height 128
  Mass 10000000
  +SOLID
  +SHOOTABLE
  +NOBLOOD
  +FLOORCLIP
  +INCOMBAT
  DeathSound "misc/explosion"
  States
  {
  Spawn:
    SECR ABCD 4 Bright
    Loop
  Death:
    SECR E 5 Bright A_Bang4Cloud
    SECR F 5 Bright A_NoBlocking
    SECR G 5 Bright A_GiveQuestItem(27)
    SECR H 5 Bright A_TossGib
    SECR I 5 Bright A_Bang4Cloud
    SECR J 5
    SECR K 5 A_Bang4Cloud
    SECR L 5
    SECR M 5 A_Bang4Cloud
    SECR N 5
    SECR O 5 A_Bang4Cloud
    SECR P -1
    Stop
  }
}