Advertisement
ijontichy

DECORATE.dec

May 11th, 2012
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. actor Fist : Weapon
  2. {
  3. Game Doom
  4. Weapon.SelectionOrder 3700
  5. Weapon.Kickback 100
  6. +WEAPON.WIMPY_WEAPON
  7. +WEAPON.MELEEWEAPON
  8. Obituary "$OB_MPFIST" // "%o chewed on %k's fist."
  9. States
  10. {
  11. Ready:
  12. PUNG A 1 A_WeaponReady
  13. loop
  14. Deselect:
  15. PUNG A 1 A_Lower
  16. loop
  17. Select:
  18. PUNG A 1 A_Raise
  19. loop
  20. Fire:
  21. PUNG B 4
  22. PUNG C 4 A_Punch
  23. PUNG D 5
  24. PUNG C 4
  25. PUNG B 5 A_ReFire
  26. goto Ready
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement