Advertisement
Guest User

Untitled

a guest
Jan 18th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. actor RiotGun : DoomWeapon
  2. {
  3. Weapon.AmmoUse 1
  4. Weapon.AmmoGive 8
  5. Weapon.AmmoType "Shell"
  6. Inventory.PickupMessage "You got the Riotgun!"
  7. Obituary "%o was blown away by %k's Riotgun."
  8. Weapon.SlotNumber 3
  9. Decal "BulletChip"
  10. attacksound "AA12/Fire"
  11. scale 0.85
  12. States
  13. {
  14. Ready:
  15. RIOT A 1 A_WeaponReady
  16. Loop
  17. Deselect:
  18. RIOT A 1 A_Lower
  19. Loop
  20. Select:
  21. RIOT A 1 A_Raise
  22. Loop
  23. Fire:
  24. RIOT E 2 bright A_FireBullets (6, 4, 5, 5, "BulletPuff", 1)
  25. RIOT F 2 bright Offset(8,40) A_GunFlash
  26. RIOT A 2 bright Offset(4,36) A_SetPitch (pitch-0.5)
  27. RIOT A 2 bright
  28. RIOT B 2 bright
  29. RIOT C 2
  30. RIOT A 8
  31. RIOT A 1 A_ReFire
  32. Goto Ready
  33. Flash:
  34. TNT1 A 4 Bright A_Light1
  35. TNT1 A 3 Bright A_Light2
  36. Goto LightDone
  37. Spawn:
  38. RIOT G -1
  39. Stop
  40. }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement