Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Actor WeaponsRandomSpawner : RandomSpawner {
- DropItem "Shotgun" 255 4
- DropItem "Chainsaw" 255 3
- DropItem "SuperShotgun" 255 2
- DropItem "Chaingun" 255 1
- }
- Actor Weapons2RandomSpawner : RandomSpawner {
- DropItem "RocketLauncher" 255 7
- DropItem "PlasmaRifle" 255 4
- DropItem "BFG900" 1
- }
- Actor WeaponsSpawner 19824 {
- States {
- Spawn:
- TNT1 A Random (17, 70) // Change "Random (17, 70)" to a number if this is for Zandronum
- // or if you want a fixed spawn rate.
- Summon:
- TNT1 A 0 A_Jump (52, "Summon2")
- TNT1 A 0 A_SpawnItemEx ("WeaponsRandomSpawner")
- TNT1 A 0 A_SpawnItemEx ("TeleportFog")
- Goto Spawn
- Summon2:
- TNT1 A 0 A_SpawnItemEx ("Weapons2RandomSpawner")
- TNT1 A 0 A_SpawnItemEx ("TeleportFog")
- Goto Spawn
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement