Hi there.
I've been trying to find a work-around to the fact that entities will not follow waypoints unless there is a path underneath. With help from Leon Kennedy on FPSC chat I now have a possible method to make an antigrav platoform rise like a lift. I could just use a lift platform but A: You can't jump or crouch on the lift and B: You can walk off the side into thin air without falling.
In theory, the method to get the antigravity platform is to use invisible wall or floor entities and place one at floor level on each layer the platform will be rising to. You can then turn collision off so that the player passes right through. However, I can't get this to work.
I have all my dynamic invisible floor entities with collision turned off using this as the appear script:
;Artificial Intelligence Script
:state=0:coloff,state=1,runfpidefault=1
;End of Script
(On side note, should I have physics on or off?)
I then have my plaform (It is raised slightly off the ground, however it does not move at all. I've tried numerous different positions and such but cannot get this to work.
I also wanted the platform to wait until the player stood on it and found this script on FPSfree:
;Artificial Intelligence Script
; by xplosys
;Header
desc = Wait for Player and Follow Waypoints with no rotation (platform)
;Triggers
:state=0,plrdistwithin=40: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
However, the player just falls through the platform, any thoughts would be greately appreciated.