Advertisement
Guest User

Untitled

a guest
Jul 24th, 2024
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. class Woman : Actor
  2. {
  3. Default
  4. {
  5. Monster;
  6. Obituary "%o was murdered by UMP-45 Woman";
  7. Health 100;
  8. Radius 50;
  9. Height 65;
  10. XScale 0.45;
  11. YScale 0.45;
  12. Speed 8;
  13. PainChance 200;
  14. +FLOORCLIP
  15. SeeSound "grunt/sight";
  16. AttackSound "grunt/attack";
  17. PainSound "grunt/pain";
  18. DeathSound "grunt/death";
  19. ActiveSound "grunt/active";
  20. Tag "$Woman";
  21. DropItem "Clip";
  22. }
  23. States
  24. {
  25. Spawn:
  26. SHF3 AB 10 A_Look;
  27. Loop;
  28. See:
  29. SHF3 AABBCCDD 4 A_Chase;
  30. Loop;
  31. Missile:
  32. SHF3 E 10 A_FaceTarget;
  33. SHF3 F 8 A_PosAttack;
  34. SHF3 E 8;
  35. Goto See;
  36. Pain:
  37. SHF3 G 3;
  38. SHF3 G 3 A_Pain;
  39. Goto See;
  40. Death:
  41. SHF3 J 3;
  42. SHF3 K 3;
  43. SHF3 L 3;
  44. SHF3 M 3;
  45. SHF3 N 3;
  46. SHF3 O 3;
  47. SHF3 P 3;
  48. SHF3 Q -1;
  49. Stop;
  50.  
  51. XDeath:
  52. SHF3 M 5;
  53. SHF3 N 5 A_XScream;
  54. SHF3 O 5 A_NoBlocking;
  55. SHF3 PQRST 5;
  56. SHF3 U -1;
  57. Stop;
  58. Raise:
  59. SHF3 K 5;
  60. SHF3 JIH 5;
  61. Goto See;
  62. }
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement