Exemplo n.º 1
0
 public GrindingNavigation(PathProfile pathProfile)
 {
     PathProfile           = pathProfile;
     SpotToHit             = pathProfile.GetSubProfile().GetNextHotSpot();
     _currentWaypointIndex = 0;
     _path = pathProfile.FindShortsPath(ObjectManager.MyPlayer.Location, SpotToHit);
     SetNextWaypoint();
 }
Exemplo n.º 2
0
 public GrindingNavigation(PathProfile pathProfile)
 {
     PathProfile = pathProfile;
     SpotToHit = pathProfile.GetSubProfile().GetNextHotSpot();
     _currentWaypointIndex = 0;
     _path = pathProfile.FindShortsPath(ObjectManager.MyPlayer.Location, SpotToHit);
     SetNextWaypoint();
 }
Exemplo n.º 3
0
 public void Reset()
 {
     SpotToHit             = PathProfile.GetSubProfile().GetNextHotSpot();
     _path                 = PathProfile.FindShortsPath(ObjectManager.MyPlayer.Location, SpotToHit);
     _currentWaypointIndex = 0;
 }