Intranet Catprocess
  1. news...
  2. about Blackvoxel
  3. download
  4. manual
  5. videos
  6. about us
  1. A simple lift

    // 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);
    }
    }
     
  2. Google+