-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTeamStart.bat
33 lines (28 loc) · 1.22 KB
/
TeamStart.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
setlocal
set "path_1=target\classes;ASL;lib\*"
set "className_1=org.example.RoboCupAgent"
set "team_1=Carleton"
set "path_2=target\classes;ASL;lib\*" :: change this to the path of your agent's directory.
set "className_2=org.example.RoboCupAgent" :: change this to your agent's main class.
set "team_2=University"
start java -cp "%path_1%" %className_1% -team %team_1% -playerType Goalie
ping localhost
start java -cp "%path_1%" %className_1% -team %team_1% -playerType Defender
ping localhost
start java -cp "%path_1%" %className_1% -team %team_1% -playerType Defender
ping localhost
start java -cp "%path_1%" %className_1% -team %team_1% -playerType Attacker
ping localhost
start java -cp "%path_1%" %className_1% -team %team_1% -playerType Attacker
ping localhost
start java -cp "%path_2%" %className_2% -team %team_2% -playerType Goalie
ping localhost
start java -cp "%path_2%" %className_2% -team %team_2% -playerType Defender
ping localhost
start java -cp "%path_2%" %className_2% -team %team_2% -playerType Defender
ping localhost
start java -cp "%path_2%" %className_2% -team %team_2% -playerType Attacker
ping localhost
start java -cp "%path_2%" %className_2% -team %team_2% -playerType Attacker
ping localhost
endlocal