Guest User

Untitled

a guest
Oct 21st, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. actor M9 : DoomWeapon
  2. {
  3. Weapon.SelectionOrder 12
  4. Weapon.AmmoUse 1
  5. Weapon.AmmoGive 20
  6. Weapon.AmmoType "Clip"
  7. Weapon.AmmoType2 M9Rounds"
  8. Inventory.Pickupmessage "Picked up an m9."
  9. States
  10. {
  11. Ready:
  12. PISG A 1 A_WeaponReady
  13. Loop
  14. Deselect:
  15. PISG A 1 A_Lower
  16. Loop
  17. Select:
  18. PISG A 1 A_Raise
  19. Loop
  20. Fire:
  21. PISG A 4
  22. PISG B 6 A_FirePistol
  23. PISG C 4
  24. PISG B 5 A_ReFire
  25. Goto Ready
  26. Flash:
  27. PISF A 7 Bright A_Light1
  28. Goto LightDone
  29. Spawn:
  30. PIST A -1
  31. Stop
  32. }
  33. }
  34.  
  35.  
  36. ACTOR M9Rounds : Ammo
  37. {
  38. Inventory.Amount 0
  39. Inventory.MaxAmount 8
  40. }
Add Comment
Please, Sign In to add comment