...got it. Had a typo. I've changed the rise and fall keys.
If using physics, be sure to set
PHYSICS FORCE DAMAGE = 0
otherwise the player will take damage when the board rises.
;Artificial Intelligence Script::::::::::::::::::::::::::::::::::::::
desc = Remote Control Sentry Bot
;by Fluffy, Seth Black, xplosys edited by BIG Viking Games
;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
;Controls:
;J = TURN LEFT
;I = MOVE FORWARD
;K = MOVE BACKWARD
;L = TURN RIGHT
;INSERT KEY = SHUT OFF BOT
;FORWARD SLASH KEY (/) = RISE 10 UNITS
;RIGHT SHIFT KEY = FALL 10 UNITS
;:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
;Triggers
;Player Approaches: Bot Activates
:state=0,plrdistwithin=50:state=1,sound=audiobank\atmos\computerhum.wav
;REMOVE SEMI COLON To Display Remote Control HUD Upon Activating Bot
;:state=1:hudshow=remotecontrol
;Within Radio Range: Follow Commands
:state=1,plrdistwithin=50:state=2
;Press I Key: Move Forward With Walk Animation
:state=2,scancodekeypressed=23:sound=audiobank\atmos\powerhum.wav,movefore=4,animate=2
;Press K Key: Move Backward With Walk Animation
:state=2,scancodekeypressed=37:movefore=-4,sound=audiobank\atmos\powerhum.wav,animate=2
;Press FORWARD SLASH KEY (/):Hoverboard Rises 10 Units
:state=2,scancodekeypressed=53:moveup=10,sound=audiobank\atmos\powerhum.wav,animate=2
;Press RIGHT SHIFT KEY:Hoverboard Falls 10 Units
:state=2,scancodekeypressed=54:moveup=-10,sound=audiobank\atmos\powerhum.wav,animate=2
;Press J Key: Turn Left With Strafe Animation
:state=2,scancodekeypressed=36:rotatey=-5,sound=audiobank\atmos\powerhum.wav,setframe=3,incframe=3
;Press L Key: Turn Right With Strafe Animation
:state=2,scancodekeypressed=38:rotatey=5,sound=audiobank\atmos\powerhum.wav,setframe=4,incframe=4
;Out Of Radio Range: Lose Control: Player Must Get Back Into Radio Range To Control
:state=2,plrdistfurther=51:state=1
;Press INSERT KEY To Turn Off Bot
:scancodekeypressed=210:state=0,animate=1,sound=audiobank\atmos\steamslowhum.wav
;End of Script:::::::::::::::::::::::::::::::::::::::::
Widow 13 - Coming Spring 2008