Ok so I know how to spawn an actor that's already in the game using the "spawn thing" command, but how do I spawn a custom actor that I added to the wad? It doesn't appear in the option when I have to select the "Thing Type".To clarify, I'm trying to make it so that said custom enemy spawns in a Map Spot once I wald over a line.
Here's the custom monster I'm trying to spawn
Quote
ACTOR Troopod 19001
{
Health 70
Radius 20
Height 56
Mass 100
Speed 12
PainChance 200
Monster
+FLOORCLIP
SeeSound "imp/sight"
PainSound "imp/pain"
DeathSound "imp/death"
ActiveSound "imp/active"
HitObituary "$OB_IMPHIT"
Obituary "$OB_IMP"
States
{
Spawn:
TROI AB 10 A_Look
Loop
See:
TROI AABBCCDD 3 A_Chase
Loop
Melee:
Missile:
TROI EF 8 A_FaceTarget
TROI G 6 A_TroopAttack
TROI G 6 A_TroopAttack
Goto See
Pain:
TROI H 2
TROI H 2 A_Pain
Goto See
Death:
TROI I 8
TROI J 8 A_Scream
TROI K 6
TROI L 6 A_NoBlocking
TROI M -1
Stop
XDeath:
TROI N 5
TROI O 5 A_XScream
TROI P 5
TROI Q 5 A_NoBlocking
TROI RST 5
TROI U -1
Stop
Raise:
TROI ML 8
TROI KJI 6
Goto See
}
}
Question
TheGuy
(I'm using ultimate doom builder in Doom 2 UDMF)
Ok so I know how to spawn an actor that's already in the game using the "spawn thing" command, but how do I spawn a custom actor that I added to the wad? It doesn't appear in the option when I have to select the "Thing Type".To clarify, I'm trying to make it so that said custom enemy spawns in a Map Spot once I wald over a line.
Here's the custom monster I'm trying to spawn
Share this post
Link to post
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.