Q: How do you make platforms move horizontally, like across chasms or acid?
A: Use the "antigravplatform" in the Entity Library. You'll find in the scifi/scenery/lifts folder. You have to use
waypoints for it, else it will not move. Use the following script and the platform won’t move until the player
actually steps upon it:
;Artificial Intelligence Script
; by xplosys
;Header
desc = Wait for Player and Follow Waypoints with no rotation
(platform)
;Triggers
:state=0,plrdistwithin=20:state=1,norotate=1
:state=1,waypointstate=0:animate=2,waypointstart
:state=1,waypointstate=3:animate=2,waypointnext
:state=1,waypointstate=4:animate=2,waypointrandom
:state=1,waypointstate=5:animate=2,waypointreverse
;End of Script
maybe can be used for ur situation..(quoted from tutorial in sign)
<-made by Nickydude