Advertisement
Guest User

Untitled

a guest
Jul 18th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.97 KB | None | 0 0
  1.  
  2.   // If enabled, seed list will be ignored and every match will be played against a random seed
  3.   "randomSeed": "true",
  4.  
  5.   // The name of the multiplayer game as it appears at the end of the url of your IDE
  6.   "multiName": "amadeus-challenge",
  7.  
  8.   // Optional. Indicates if the game is a contest or not. FALSE if not provided
  9.   "isContest": "true",
  10.  
  11.   // List of seeds to play
  12.   "seedList": [
  13.   ],
  14.  
  15.   // Cooldown between every match, 20 is the minimum to avoid CG's limitation
  16.   "requestCooldown": "20",
  17.  
  18.   // [0, N] forced start position at N
  19.   // -1 : Each seed is played with every starting positions configuration. (Works only with fixed seed list). In 1v1, it will generate 2 games, 6 games in 1v2 and 24 games in 1v3. Best suited for non symmetrical and/or turn-based games.
  20.   // -2 : Each seed is played once, with random starting positions. Best suited for perfectly symmetrical and non turn-based games in which starting position doesn't really matter, like MM, GoD, CotC, GitC, ...
  21.   "playerPosition": "-2",
  22.  
  23.   // Minimum number of enemies to play against
  24.   "minEnemiesNumber": "1",
  25.  
  26.   // Maximum number of enemies to play against
  27.   "maxEnemiesNumber": "3",
  28.  
  29.   // List of tested codes
  30.   "codeConfigurationList": [
  31.     {
  32.       // Path to your code
  33.       "sourcePath": "C:\Users\Petras vi\Desktop\Amadus Challenge",
  34.       // Number of times each seed will be played
  35.       "nbReplays": "1",
  36.       // Code language
  37.       "language": "C++",
  38.       // Enemies list. At each game, random enemies are picked from this list (their number is also picked randomly between <minEnemiesNumber> and <maxEnemiesNumber>)
  39.       "enemies": [
  40.         {
  41.           // Enemy agentId
  42.           "agentId": "  1955343",
  43.           // Enemy name
  44.           "name": "RoboStac"
  45.         },
  46.         {
  47.           "agentId": "1956671",
  48.           "name": " y_kawano"
  49.         },
  50.         {
  51.           "agentId": "812582",
  52.           "name": "DeVan"
  53.         }
  54.       ]
  55.     },
  56.     [...]
  57.   ]
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement