Advertisement
jewalky

Untitled

Feb 18th, 2017
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.87 KB | None | 0 0
  1. ACTOR ShotgunGuy2
  2. {
  3.   Health 30
  4.   Radius 20
  5.   Height 56
  6.   Mass 100
  7.   Speed 8
  8.   PainChance 170
  9.   Monster
  10.   +FLOORCLIP
  11.   SeeSound "shotguy/sight"
  12.   AttackSound "shotguy/attack"
  13.   PainSound "shotguy/pain"
  14.   DeathSound "shotguy/death"
  15.   ActiveSound "shotguy/active"
  16.   Obituary "$OB_SHOTGUY"
  17.   DropItem "Shell"
  18.   States
  19.   {
  20.   Spawn:
  21.     SPOS AB 10 A_Look
  22.     Loop
  23.   See:
  24.     SPOS AABBCCDD 3 A_Chase
  25.     Loop
  26.   Missile:
  27.     SPOS E 10 A_FaceTarget
  28.     SPOS F 10 Bright A_SPosAttackUseAtkSound
  29.     SPOS E 10
  30.     Goto See
  31.   Pain:
  32.     SPOS G 3
  33.     SPOS G 3 A_Pain
  34.     Goto See
  35.   Death:
  36.     SPOS H 5
  37.     SPOS I 5 A_Scream
  38.     SPOS J 5 A_NoBlocking
  39.     SPOS K 5
  40.     SPOS L -1
  41.     Stop
  42.   XDeath:
  43.     SPOS M 5
  44.     SPOS N 5 A_XScream
  45.     SPOS O 5 A_NoBlocking
  46.     SPOS PQRST 5
  47.     SPOS U -1
  48.     Stop
  49.   Raise:
  50.     SPOS L 5
  51.     SPOS KJIH 5
  52.     Goto See
  53.   }
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement