I'm pretty new to the Doom modding scene, I've been fooling around with GZ Doom Builder and ACS for a day now. Anyways, I've been trying to get monsters to slide across the floors more or less constantly. It wasn't working too well, until I started using ThrustThing in the DECORATE lump. I got MUCH better results, but it stops thrusting after a few seconds. I researched it for a while, but I haven't found any solutions yet. Can someone tell me what I've been doing wrong?
EDIT: I ran it again, and it looks like the Zombiemen stop thrusting whenever they fire.
Code: Select all
Actor ZombieManSkt : ZombieMan replaces ZombieMan {
+SLIDESONWALLS
Friction 1000000
Speed 10
BounceType Doom
WallBounceFactor 0.000001
States {
See:
POSS ABCD 4 {
A_Chase;
ThrustThing(GetAngle(GAF_RELATIVE), 10, 1, 0);
}
Loop
}
}