Advertisement
Guest User

Untitled

a guest
Oct 5th, 2014
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. //Sector C
  2. [
  3. "AIBase1", //This is the marker name to be used as the patrol and spawning area.
  4. 6, //This trigger will spawn a group of 4 AI units.
  5. 2, //AI spawned by this trigger will have Weapon Grade level 3 (see below for explanation of Weapon Grade)
  6. false //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
  7. ] call DZAI_spawn;
  8.  
  9. [
  10. "AIBase2", //This is the marker name to be used as the patrol and spawning area.
  11. 6, //This trigger will spawn a group of 4 AI units.
  12. 2, //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
  13. true //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
  14. ] call DZAI_spawn;
  15.  
  16. [
  17. "AIBase3", //This is the marker name to be used as the patrol and spawning area.
  18. 4, //This trigger will spawn a group of 4 AI units.
  19. 3, //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
  20. true //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
  21. ] call DZAI_spawn;
  22.  
  23. [
  24. "AIBase4", //This is the marker name to be used as the patrol and spawning area.
  25. 4, //This trigger will spawn a group of 4 AI units.
  26. 3, //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
  27. true //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement