// A Simple Lift
// After launching program, you must climb on the top of the robot 
function Voxel_Step()
{
  local Diff;
  Diff = GetInfo(5) - GetY();  
  if (GetX() == GetInfo(4) && GetZ() == GetInfo(6) && Diff>0 && Diff<4)
  {
    PlayerSetAccel(0.0, 1500.0, 0.0)
    if (Diff>1) Move(4);
  }
}