Advertisement
Chronos_Ouroboros

Untitled

Jan 4th, 2015
532
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. Actor WeaponsRandomSpawner : RandomSpawner {
  2. DropItem "Shotgun" 255 4
  3. DropItem "Chainsaw" 255 3
  4. DropItem "SuperShotgun" 255 2
  5. DropItem "Chaingun" 255 1
  6. }
  7.  
  8. Actor Weapons2RandomSpawner : RandomSpawner {
  9. DropItem "RocketLauncher" 255 7
  10. DropItem "PlasmaRifle" 255 4
  11. DropItem "BFG900" 1
  12. }
  13.  
  14. Actor WeaponsSpawner 19824 {
  15. States {
  16. Spawn:
  17. TNT1 A Random (17, 70) // Change "Random (17, 70)" to a number if this is for Zandronum
  18. // or if you want a fixed spawn rate.
  19. Summon:
  20. TNT1 A 0 A_Jump (52, "Summon2")
  21. TNT1 A 0 A_SpawnItemEx ("WeaponsRandomSpawner")
  22. TNT1 A 0 A_SpawnItemEx ("TeleportFog")
  23. Goto Spawn
  24. Summon2:
  25. TNT1 A 0 A_SpawnItemEx ("Weapons2RandomSpawner")
  26. TNT1 A 0 A_SpawnItemEx ("TeleportFog")
  27. Goto Spawn
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement