Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
  • 0
Phade102

Infinitely respawning monster

Question

Hi all, I am attempting to implement an idea for my map that involves two mancubus on pillars that respawn if you try to kill them. However, I am unsure how to actually do this without the use of an arch vile under it, which with what i'm building is not possible. is there way to do this with Zdoom UDMF format? For reference, I am looking at something similar to Arachnotron Arrival, map03 of ancient aliens, where they keep spawning until you telefrag them.

Share this post


Link to post

4 answers to this question

Recommended Posts

  • 0

Not sure if this works in Vanilla doom or Any old scripts besides ACS

 

you can achieve this by Loops 

 

https://zdoom.org/wiki/Loops

 

Chubbzdoomer has a Tutorial video on loops if you want to see how its done

 

 

Share this post


Link to post
  • 0

You can do this in DECORATE by giving the monster the ALWAYSRESPAWN flag.

actor Fatso2 : Fatso 1067
{
  +ALWAYSRESPAWN
}

This makes a new monster that inherits from the mancubus (called Fatso here), gives the new monster a DoomEd number (1067, the default mancubus number + 1000), and adds the flag to it. Use Slade to put this code in the DECORATE lump in your wad, and place thing number 1067 in your map wherever you want the respawning mancubus.

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×