Flying Carpet; Is it possible?

Ask about ACS, DECORATE, ZScript, or any other scripting questions here!

Moderator: GZDoom Developers

Forum rules
Before asking on how to use a ZDoom feature, read the ZDoom wiki first. If you still don't understand how to use a feature, then ask here.

Please bear in mind that the people helping you do not automatically know how much you know. You may be asked to upload your project file to look at. Don't be afraid to ask questions about what things mean, but also please be patient with the people trying to help you. (And helpers, please be patient with the person you're trying to help!)
Post Reply
User avatar
SPZ1
Posts: 256
Joined: Wed Aug 02, 2017 3:01 pm
Location: Illinois
Contact:

Flying Carpet; Is it possible?

Post by SPZ1 »

I made the ACTOR fly around a map (with an ActorMover and Interpolation Points) but when I stand on, it freezes in place! Is it possible or is this more of a feature request? Check this out:

Code: Select all

ACTOR Flying_Carpet : CustomBridge 30500 {
	//640 x 640
	Scale 0.25
	Radius 80
	Height 3
	RenderStyle Normal 
	Args 80, 3, 1, 1, 1
	FloatBobStrength 0.75
	+FLATSPRITE
	+FLOATBOB
 	+SOLID
	+NOGRAVITY
	+NOLIFTDROP
	+ACTLIKEBRIDGE
	+CANPASS
	+DROPOFF
	+ISMONSTER
	States {
		Spawn:
			CARP A 1
		See:
			CARP A 1
			CARP A -1
			Stop
	}
} 

Post Reply

Return to “Scripting”