Classes:Computer

From ZDoom Wiki
Jump to navigation Jump to search
Note: Wait! Stop! You do not need to copy this actor's code into your project! Here's why:
  1. This actor is already defined in GZDoom, there's no reason to define it again.
  2. In fact, trying to define an actor with the same name will cause an error (because it already exists).
  3. If you want to make your own version of this actor, use inheritance.
  4. Definitions for existing actors are put on the wiki for reference purpose only.
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
  }
}