What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Turn to face gps point

Code:
private bool TurnToCoords(double X, double Y)
        {
            int myAngle = angle(me, X, Y);
            return Turn(-(myAngle / 180.0 * Math.PI), true);
        }
 
Back
Top