Advertisement
Guest User

Doom weapon code

a guest
Mar 19th, 2024
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. ACTOR Rhino : DoomWeapon 20510
  2. {
  3. Game Doom
  4. //$Category New Weapons
  5. //$Title Chiappa Rhino
  6. weapon.Slotnumber 2
  7. Weapon.SelectionOrder 1900
  8. Weapon.AmmoUse 1
  9. Weapon.AmmoGive 20
  10. Weapon.AmmoType "Clip"
  11. Attacksound "sounds/357pistol"
  12. +WEAPON.WIMPY_WEAPON
  13. Inventory.Pickupmessage "You got the Chiappa Rhino!"
  14. Tag "Rhino"
  15. Decal "BulletChip"
  16. States
  17. {
  18. Ready:
  19. MAG1 A 1 A_WeaponReady
  20. Loop
  21. Deselect:
  22. MAG1 A 1 A_Lower
  23. Loop
  24. Select:
  25. MAG1 A 1 A_Raise
  26. Loop
  27. Fire:
  28. MAG1 C 15 A_FireBullets (0, 0, 1, 30, "BulletPuff", FBF_NORANDOM | FBF_USEAMMO)
  29. MAG1 A 10
  30. MAG1 A 10 A_ReFire
  31. Goto Ready
  32. Flash:
  33. MAG1 C 7 Bright A_Light1
  34. Goto LightDone
  35. Spawn:
  36. MAGP A -1
  37. Stop
  38. }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement