I wish to discuss a possible feature. I'll readily write the code for it later, if there is any chance that it will be accepted. (Provided that it does not turn out to be overly difficult afterall.)
Sometimes you wish to interact with a spawned actor without rewriting the spawned actor to accomplish this. For general-purpose creator-creation design, the creator will need a reference to its creation. This also allows operations to be performed on the spawned actor before it can possibly carry out any of its own action pointers, as even an opening set of two 0 tic states does not execute action pointers immediately. (There may be reasons not to allow this, but I don't know any.)
Flags SXF_MAKETARGET, SXF_MAKEMASTER, SXF_MAKETRACER.
SXF_MAKETARGET: Sets the spawned actor as target, applying safeguards against infinite loops for missile ownership.
SXF_MAKEMASTER: Sets the spawned actor as master, not compatible with SXF_SETMASTER. Effective only when both actors are monsters.
SXF_MAKETRACER: Sets the spawned actor as tracer, unconditionally.
Peril: Even more manual pointer management. I like it, and work hard to do it without these functions. Modders who previously didn't know how to crash ZDOOM will now have more tools at their disposal.
Advantage: You can spawn an actor that is not specialised for your needs, and make general-purpose interactions for it. Simple uses, and complex methods (handing over custom inventory code for immediate execution, passing and fetching pointers, monitoring).

