Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. use "StarCraft Connector.jar" as environment with
  2. map="(2)Destination.scx",
  3. own_race="Terran",
  4. starcraft_location="C:\Starcraft",
  5. auto_menu="Single_Player",
  6. enemy_race="random",
  7. debug="true", % launch the developer tool
  8. invulnerable="true", % individual assignment only
  9. game_speed=50. % default tournament speed
  10.  
  11. % DO NOT REMOVE OR CHANGE THIS AGENT DEFINITION
  12. % Defines an agent for the player's main base
  13. define mainBase as agent {
  14. % you can add an init module here if needed
  15. use TerranCommandCenter.TerranCommandCenterInit as init module.
  16. use TerranCommandCenter.TerranCommandCenterEvent as event module.
  17. use TerranCommandCenter.TerranCommandCenter as main module.
  18. }
  19.  
  20. % Define a worker drone agent
  21. define terranSCV as agent {
  22. use TerranSCV.TerranSCVInit as init module.
  23. use TerranSCV.TerranSCV as main module.
  24. use TerranSCV.TerranSCVEvent as event module.
  25. }
  26.  
  27. launchpolicy{
  28. % DO NOT REMOVE THIS LAUNCH RULE
  29. % Launch an agent for the main base
  30. when type = terranCommandCenter launch mainBase.
  31. % Launch a SCV agent for each worker
  32. when type = terranSCV launch terranSCV.
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement