Guest User

Untitled

a guest
Oct 21st, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. actor M9 : DoomWeapon
  2. {
  3. Weapon.SelectionOrder 12
  4. Weapon.AmmoUse 1
  5. Weapon.AmmoGive 15
  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. Reload:
  27. PISG B 4 A_TakeInventory("Clip",15)
  28. Flash:
  29. PISF A 7 Bright A_Light1
  30. Goto LightDone
  31. Spawn:
  32. PIST A -1
  33. Stop
  34. }
  35. }
  36.  
  37.  
  38. ACTOR M9Rounds : Ammo
  39. {
  40. Inventory.Amount 0
  41. Inventory.MaxAmount 15
  42. }
Add Comment
Please, Sign In to add comment