Advertisement
Guest User

asdfqqq

a guest
May 26th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.57 KB | None | 0 0
  1. ---
  2. -- Name: CAP-001 - Combat Air Patrol
  3. -- Author: FlightControl
  4. -- Date Created: 16 January 2017
  5. --
  6. -- # Situation:
  7. -- The Su-27 airplane will patrol in PatrolZone.
  8. -- It will not engage any enemy automatically.
  9. --
  10. -- # Test cases:
  11. --
  12. -- 1. Observe the Su-27 patrolling.
  13. --
  14.  
  15. local CapPlane = GROUP:FindByName( "Plane" )
  16.  
  17. local PatrolZone = ZONE:New( "Patrol Zone" )
  18.  
  19. AICapZone = AI_CAP_ZONE:New( PatrolZone, 500, 1000, 500, 600 )
  20.  
  21. AICapZone:SetControllable( CapPlane )
  22.  
  23. AICapZone:__Start( 1 ) -- They should statup, and start patrolling in the PatrolZone.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement