European defs, goto convenience.

This commit is contained in:
gyboth 2009-01-09 14:32:34 +00:00
parent 47d3d9f1b8
commit f519321108
30 changed files with 151 additions and 135 deletions

View File

@ -10,11 +10,12 @@
- updated Romanian player names
- added new images for simulation
- added newspaper feature
- updated translations (German, French, Romanian)
- updated translations
- the country selection got some convenience updates
- updated Swedish translation (thanks to Daniel Nylander)
- added Brazilian Portuguese translation (thanks to Valdinei Martins)
- added Portuguese translation (thanks to Marco Alves)
- revamped European cup system (thanks to Tommasi)
06/11/2008: v2.3.0

View File

@ -109,8 +109,10 @@ debug_action(const gchar *text)
}
else if(g_str_has_prefix(text, "goto"))
{
sett_set_int("int_opt_goto_mode", 1);
while(week < value)
on_button_new_week_clicked(NULL, NULL);
sett_set_int("int_opt_goto_mode", 0);
}
else if(g_str_has_prefix(text, "testcom") ||
g_str_has_prefix(text, "tc"))

View File

@ -60,6 +60,16 @@ gui_label_set_text_from_int(GtkLabel *label, gint number, gboolean append)
gtk_label_set_text(label, buf2);
}
gdouble
gui_get_progress_bar_fraction(void)
{
if(sett_int("int_opt_goto_mode"))
return 0;
return gtk_progress_bar_get_fraction(
GTK_PROGRESS_BAR(lookup_widget(window.progress, "progressbar")));
}
/* Show a window with a progress bar.
@param value The value of the progress bar. If set to 1
or < 0 the progress bar window gets destroyed.
@ -74,6 +84,9 @@ gui_show_progress(gfloat value, const gchar *text, gint pictype)
GtkProgressBar *progressbar = NULL;
if(sett_int("int_opt_goto_mode"))
return;
if(value == 1 || value < 0)
{
window_destroy(&window.progress);

View File

@ -43,6 +43,9 @@ gui_label_set_text_from_int(GtkLabel *label, gint number, gboolean append);
void
gui_show_progress(gfloat value, const gchar *text, gint pictype);
gdouble
gui_get_progress_bar_fraction(void);
void
gui_set_arrow_pair(gint pair, gboolean state);

View File

@ -87,8 +87,7 @@ load_save_save_game(const gchar *filename)
g_print("load_save_save leagues/cups \n");
gui_show_progress(
((PROGRESS_MAX * gtk_progress_bar_get_fraction(
GTK_PROGRESS_BAR(lookup_widget(window.progress, "progressbar")))) + 1) / PROGRESS_MAX,
((PROGRESS_MAX * gui_get_progress_bar_fraction()) + 1) / PROGRESS_MAX,
_("Saving leagues and cups..."),
PIC_TYPE_SAVE);
@ -98,8 +97,7 @@ load_save_save_game(const gchar *filename)
g_print("load_save_save users \n");
gui_show_progress(
((PROGRESS_MAX * gtk_progress_bar_get_fraction(
GTK_PROGRESS_BAR(lookup_widget(window.progress, "progressbar")))) + 1) / PROGRESS_MAX,
((PROGRESS_MAX * gui_get_progress_bar_fraction()) + 1) / PROGRESS_MAX,
_("Saving users..."),
PIC_TYPE_SAVE);
@ -109,8 +107,7 @@ load_save_save_game(const gchar *filename)
g_print("load_save_save transfers \n");
gui_show_progress(
((PROGRESS_MAX * gtk_progress_bar_get_fraction(
GTK_PROGRESS_BAR(lookup_widget(window.progress, "progressbar")))) + 1) / PROGRESS_MAX,
((PROGRESS_MAX * gui_get_progress_bar_fraction()) + 1) / PROGRESS_MAX,
_("Saving transfer list..."),
PIC_TYPE_SAVE);
@ -120,8 +117,7 @@ load_save_save_game(const gchar *filename)
g_print("load_save_save stats \n");
gui_show_progress(
((PROGRESS_MAX * gtk_progress_bar_get_fraction(
GTK_PROGRESS_BAR(lookup_widget(window.progress, "progressbar")))) + 1) / PROGRESS_MAX,
((PROGRESS_MAX * gui_get_progress_bar_fraction()) + 1) / PROGRESS_MAX,
_("Saving season stats..."),
PIC_TYPE_SAVE);
@ -131,9 +127,7 @@ load_save_save_game(const gchar *filename)
g_print("load_save_save jobs \n");
gui_show_progress(
((PROGRESS_MAX * gtk_progress_bar_get_fraction(
GTK_PROGRESS_BAR(
lookup_widget(window.progress, "progressbar")))) + 1) / PROGRESS_MAX,
((PROGRESS_MAX * gui_get_progress_bar_fraction()) + 1) / PROGRESS_MAX,
/* The 'job exchange' is a list of teams looking for a manager. */
_("Saving job exchange..."),
PIC_TYPE_SAVE);
@ -144,9 +138,7 @@ load_save_save_game(const gchar *filename)
g_print("load_save_save newspaper \n");
gui_show_progress(
((PROGRESS_MAX * gtk_progress_bar_get_fraction(
GTK_PROGRESS_BAR(
lookup_widget(window.progress, "progressbar")))) + 1) / PROGRESS_MAX,
((PROGRESS_MAX * gui_get_progress_bar_fraction()) + 1) / PROGRESS_MAX,
_("Saving newspaper..."),
PIC_TYPE_SAVE);
@ -156,16 +148,14 @@ load_save_save_game(const gchar *filename)
g_print("load_save_save misc \n");
gui_show_progress(
((PROGRESS_MAX * gtk_progress_bar_get_fraction(
GTK_PROGRESS_BAR(lookup_widget(window.progress, "progressbar")))) + 1) / PROGRESS_MAX,
((PROGRESS_MAX * gui_get_progress_bar_fraction()) + 1) / PROGRESS_MAX,
_("Saving miscellaneous..."),
PIC_TYPE_SAVE);
xml_loadsave_misc_write(prefix);
gui_show_progress(
((PROGRESS_MAX * gtk_progress_bar_get_fraction(
GTK_PROGRESS_BAR(lookup_widget(window.progress, "progressbar")))) + 1) / PROGRESS_MAX,
((PROGRESS_MAX * gui_get_progress_bar_fraction()) + 1) / PROGRESS_MAX,
_("Compressing savegame..."),
PIC_TYPE_SAVE);
@ -241,8 +231,7 @@ load_save_load_game(const gchar* filename, gboolean create_main_window)
g_print("load_save_load options\n");
gui_show_progress(
((PROGRESS_MAX * gtk_progress_bar_get_fraction(
GTK_PROGRESS_BAR(lookup_widget(window.progress, "progressbar")))) + 1) / PROGRESS_MAX,
((PROGRESS_MAX * gui_get_progress_bar_fraction()) + 1) / PROGRESS_MAX,
_("Loading options..."),
PIC_TYPE_LOAD);
@ -256,8 +245,7 @@ load_save_load_game(const gchar* filename, gboolean create_main_window)
g_print("load_save_load leagues \n");
gui_show_progress(
((PROGRESS_MAX * gtk_progress_bar_get_fraction(
GTK_PROGRESS_BAR(lookup_widget(window.progress, "progressbar")))) + 1) / PROGRESS_MAX,
((PROGRESS_MAX * gui_get_progress_bar_fraction()) + 1) / PROGRESS_MAX,
_("Loading leagues and cups..."),
PIC_TYPE_LOAD);
@ -267,8 +255,7 @@ load_save_load_game(const gchar* filename, gboolean create_main_window)
g_print("load_save_load users \n");
gui_show_progress(
((PROGRESS_MAX * gtk_progress_bar_get_fraction(
GTK_PROGRESS_BAR(lookup_widget(window.progress, "progressbar")))) + 1) / PROGRESS_MAX,
((PROGRESS_MAX * gui_get_progress_bar_fraction()) + 1) / PROGRESS_MAX,
_("Loading users..."),
PIC_TYPE_LOAD);
@ -278,8 +265,7 @@ load_save_load_game(const gchar* filename, gboolean create_main_window)
g_print("load_save_load transfers \n");
gui_show_progress(
((PROGRESS_MAX * gtk_progress_bar_get_fraction(
GTK_PROGRESS_BAR(lookup_widget(window.progress, "progressbar")))) + 1) / PROGRESS_MAX,
((PROGRESS_MAX * gui_get_progress_bar_fraction()) + 1) / PROGRESS_MAX,
_("Loading transfer list..."),
PIC_TYPE_LOAD);
@ -289,8 +275,7 @@ load_save_load_game(const gchar* filename, gboolean create_main_window)
g_print("load_save_load stats \n");
gui_show_progress(
((PROGRESS_MAX * gtk_progress_bar_get_fraction(
GTK_PROGRESS_BAR(lookup_widget(window.progress, "progressbar")))) + 1) / PROGRESS_MAX,
((PROGRESS_MAX * gui_get_progress_bar_fraction()) + 1) / PROGRESS_MAX,
_("Loading season stats..."),
PIC_TYPE_LOAD);
@ -300,9 +285,7 @@ load_save_load_game(const gchar* filename, gboolean create_main_window)
g_print("load_save_load jobs \n");
gui_show_progress(
((PROGRESS_MAX * gtk_progress_bar_get_fraction(
GTK_PROGRESS_BAR(
lookup_widget(window.progress, "progressbar")))) + 1) / PROGRESS_MAX,
((PROGRESS_MAX * gui_get_progress_bar_fraction()) + 1) / PROGRESS_MAX,
/* The 'job exchange' is a list of teams looking for a manager. */
_("Loading job exchange..."),
PIC_TYPE_LOAD);
@ -313,9 +296,7 @@ load_save_load_game(const gchar* filename, gboolean create_main_window)
g_print("load_save_load newspaper \n");
gui_show_progress(
((PROGRESS_MAX * gtk_progress_bar_get_fraction(
GTK_PROGRESS_BAR(
lookup_widget(window.progress, "progressbar")))) + 1) / PROGRESS_MAX,
((PROGRESS_MAX * gui_get_progress_bar_fraction()) + 1) / PROGRESS_MAX,
_("Loading newspaper..."),
PIC_TYPE_LOAD);
@ -325,8 +306,7 @@ load_save_load_game(const gchar* filename, gboolean create_main_window)
g_print("load_save_load misc \n");
gui_show_progress(
((PROGRESS_MAX * gtk_progress_bar_get_fraction(
GTK_PROGRESS_BAR(lookup_widget(window.progress, "progressbar")))) + 1) / PROGRESS_MAX,
((PROGRESS_MAX * gui_get_progress_bar_fraction()) + 1) / PROGRESS_MAX,
_("Loading miscellaneous..."),
PIC_TYPE_LOAD);

View File

@ -269,6 +269,7 @@ main_init_variables(void)
/** Some of these (or all) are disabled (set to 1) in supernational
country defs. */
option_add(&settings, "int_opt_goto_mode", 0, NULL);
option_add(&settings, "int_opt_disable_finances", 0, NULL);
option_add(&settings, "int_opt_disable_transfers", 0, NULL);
option_add(&settings, "int_opt_disable_stadium", 0, NULL);

View File

@ -184,11 +184,18 @@ option_add(OptionList *optionlist, const gchar *name,
gpointer element = NULL;
if(optionlist->list != NULL)
g_datalist_get_data(&optionlist->datalist, name);
element = g_datalist_get_data(&optionlist->datalist, name);
if(element != NULL)
main_exit_program(EXIT_OPTION_NOT_FOUND,
"Option named '%s' already contained in optionlist.", name);
{
if(debug > 0)
g_warning("Option %s already in optionlist\n", name);
((Option*)element)->value = int_value;
((Option*)element)->string_value = (string_value == NULL) ? NULL : g_strdup(string_value);
return;
}
/* main_exit_program(EXIT_OPTION_NOT_FOUND, */
/* "Option named '%s' already contained in optionlist.", name); */
new.name = g_strdup(name);
new.value = int_value;

View File

@ -190,6 +190,8 @@ start_new_season(void)
if(cp(i).add_week == 0)
fixture_write_cup_fixtures(&cp(i));
}
/* Reset team pointers using the stored ids
(pointers might have changed because of prom/rel). */
else if(cp(i).add_week == -1)
{
for(j=0;j<cp(i).fixtures->len;j++)

View File

@ -175,6 +175,9 @@ window_show_progress(gint pictype)
gchar *buf2 = NULL;
GtkImage *image = NULL;
if(sett_int("int_opt_goto_mode"))
return;
window_create(WINDOW_PROGRESS);
if(pictype == PIC_TYPE_NONE ||

View File

@ -209,14 +209,16 @@ youth_academy_update_weekly(void)
if(g_array_index(ya->players, Player, j).age + 0.1 >
const_float("float_player_age_lower") &&
g_array_index(ya->players, Player, j).age + 0.08 <=
const_float("float_player_age_lower"))
const_float("float_player_age_lower") &&
!sett_int("int_opt_goto_mode"))
user_event_add(&usr(i), EVENT_TYPE_WARNING, -1, -1, NULL,
_("Youth %s will be too old for the youth academy soon. Move him to your team or kick him out of the academy. Otherwise he'll probably look for another team to play in."), g_array_index(ya->players, Player, j).name);
else if(g_array_index(ya->players, Player, j).age > const_float("float_player_age_lower"))
{
user_event_add(&usr(i), EVENT_TYPE_WARNING, -1, -1, NULL,
_("Youth %s thought he's old enough for a real contract and left your youth academy."),
g_array_index(ya->players, Player, j).name);
if(!sett_int("int_opt_goto_mode"))
user_event_add(&usr(i), EVENT_TYPE_WARNING, -1, -1, NULL,
_("Youth %s thought he's old enough for a real contract and left your youth academy."),
g_array_index(ya->players, Player, j).name);
free_player(&g_array_index(ya->players, Player, j));
g_array_remove_index(ya->players, j);
}
@ -245,10 +247,12 @@ youth_academy_update_weekly(void)
if(ya->players->len < const_int("int_youth_academy_max_youths"))
{
youth_academy_add_new_player(ya);
user_event_add(&usr(i), EVENT_TYPE_WARNING, -1, -1, NULL,
_("A new youth registered at your youth academy."));
if(!sett_int("int_opt_goto_mode"))
user_event_add(&usr(i), EVENT_TYPE_WARNING, -1, -1, NULL,
_("A new youth registered at your youth academy."));
}
else
else if(!sett_int("int_opt_goto_mode"))
user_event_add(&usr(i), EVENT_TYPE_WARNING, -1, -1, NULL,
_("A new youth wanted to registered at your youth academy but there was no room for him."));
}

View File

@ -269,7 +269,7 @@
</choose_team>
<choose_team>
<choose_team_sid>san_marino1</choose_team_sid>
<choose_team_sid>san_marino_group_a san_marino_group_b</choose_team_sid>
<number_of_teams>1</number_of_teams>
<!--<start_idx>1</start_idx>-->
<!--<end_idx>1</end_idx>-->
@ -689,4 +689,4 @@
<neutral>1</neutral>
</cup_round>
</cup_rounds>
</cup>
</cup>

View File

@ -262,7 +262,7 @@
</choose_team>
<choose_team>
<choose_team_sid>san_marino1</choose_team_sid>
<choose_team_sid>san_marino_group_a san_marino_group_b</choose_team_sid>
<number_of_teams>1</number_of_teams>
<!--<start_idx>1</start_idx>-->
<!--<end_idx>1</end_idx>-->
@ -688,4 +688,4 @@
<neutral>1</neutral>
</cup_round>
</cup_rounds>
</cup>
</cup>

View File

@ -262,7 +262,7 @@
</choose_team>
<choose_team>
<choose_team_sid>san_marino1</choose_team_sid>
<choose_team_sid>san_marino_group_a san_marino_group_b</choose_team_sid>
<number_of_teams>1</number_of_teams>
<!--<start_idx>1</start_idx>-->
<!--<end_idx>1</end_idx>-->
@ -688,4 +688,4 @@
<neutral>1</neutral>
</cup_round>
</cup_rounds>
</cup>
</cup>

View File

@ -262,7 +262,7 @@
</choose_team>
<choose_team>
<choose_team_sid>san_marino1</choose_team_sid>
<choose_team_sid>san_marino_group_a san_marino_group_b</choose_team_sid>
<number_of_teams>1</number_of_teams>
<!--<start_idx>1</start_idx>-->
<!--<end_idx>1</end_idx>-->
@ -695,4 +695,4 @@
<neutral>1</neutral>
</cup_round>
</cup_rounds>
</cup>
</cup>

View File

@ -262,7 +262,7 @@
</choose_team>
<choose_team>
<choose_team_sid>san_marino1</choose_team_sid>
<choose_team_sid>san_marino_group_a san_marino_group_b</choose_team_sid>
<number_of_teams>1</number_of_teams>
<!--<start_idx>1</start_idx>-->
<!--<end_idx>1</end_idx>-->
@ -695,4 +695,4 @@
<neutral>1</neutral>
</cup_round>
</cup_rounds>
</cup>
</cup>

View File

@ -262,7 +262,7 @@
</choose_team>
<choose_team>
<choose_team_sid>san_marino1</choose_team_sid>
<choose_team_sid>san_marino_group_a san_marino_group_b</choose_team_sid>
<number_of_teams>1</number_of_teams>
<!--<start_idx>1</start_idx>-->
<!--<end_idx>1</end_idx>-->
@ -695,4 +695,4 @@
<neutral>1</neutral>
</cup_round>
</cup_rounds>
</cup>
</cup>

View File

@ -262,7 +262,7 @@
</choose_team>
<choose_team>
<choose_team_sid>san_marino1</choose_team_sid>
<choose_team_sid>san_marino_group_a san_marino_group_b</choose_team_sid>
<number_of_teams>1</number_of_teams>
<!--<start_idx>1</start_idx>-->
<!--<end_idx>1</end_idx>-->
@ -695,4 +695,4 @@
<neutral>1</neutral>
</cup_round>
</cup_rounds>
</cup>
</cup>

View File

@ -262,7 +262,7 @@
</choose_team>
<choose_team>
<choose_team_sid>san_marino1</choose_team_sid>
<choose_team_sid>san_marino_group_a san_marino_group_b</choose_team_sid>
<number_of_teams>1</number_of_teams>
<!--<start_idx>1</start_idx>-->
<!--<end_idx>1</end_idx>-->
@ -695,4 +695,4 @@
<neutral>1</neutral>
</cup_round>
</cup_rounds>
</cup>
</cup>

View File

@ -392,8 +392,8 @@
<choose_team_sid>switzerland1</choose_team_sid>
<number_of_teams>1</number_of_teams>
<!--here the representative of Liechtenstein, playing in the Swiss league since there's no national league in L. The id below points to its place in league_switzerland1 file among the ten teams.-->
<start_idx>10</start_idx>
<end_idx>10</end_idx>
<!--<start_idx>10</start_idx>-->
<!--<end_idx>10</end_idx>-->
<randomly>1</randomly>
<generate>1</generate>
</choose_team>
@ -656,7 +656,7 @@
</choose_team>
<choose_team>
<choose_team_sid>san_marino1</choose_team_sid>
<choose_team_sid>san_marino_group_a san_marino_group_b</choose_team_sid>
#the national cup winner here.
<number_of_teams>1</number_of_teams>
<!--<start_idx>2</start_idx>-->
@ -686,7 +686,7 @@
<choose_team>
<!--this entry includes the 3 Fair Play winners awarded by the UEFA which begin in the first qualifying round. Since the criteria are impossible to implement here, the teams are drawn randomly-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>3</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -854,7 +854,7 @@
<choose_team>
<!--this represents the 11 Intertoto Cup winners that enter the UEFA Cup in the 2nd qualifying round. As that cup isn't included in this game and would be hard to squeeze in or implement, the 11 winners are drawn randomly.-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>11</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -1159,4 +1159,4 @@
<neutral>1</neutral>
</cup_round>
</cup_rounds>
</cup>
</cup>

View File

@ -384,8 +384,8 @@
<choose_team_sid>switzerland1</choose_team_sid>
<number_of_teams>1</number_of_teams>
<!--here the representative of Liechtenstein, playing in the Swiss league since there's no national league in L. The id below points to its place in league_switzerland1 file among the ten teams.-->
<start_idx>10</start_idx>
<end_idx>10</end_idx>
<!--<start_idx>10</start_idx>-->
<!--<end_idx>10</end_idx>-->
<randomly>1</randomly>
<generate>1</generate>
</choose_team>
@ -648,7 +648,7 @@
</choose_team>
<choose_team>
<choose_team_sid>san_marino1</choose_team_sid>
<choose_team_sid>san_marino_group_a san_marino_group_b</choose_team_sid>
#the national cup winner here.
<number_of_teams>1</number_of_teams>
<!--<start_idx>2</start_idx>-->
@ -678,7 +678,7 @@
<choose_team>
<!--this entry includes the 3 Fair Play winners awarded by the UEFA which begin in the first qualifying round. Since the criteria are impossible to implement here, the teams are drawn randomly-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>3</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -846,7 +846,7 @@
<choose_team>
<!--this represents the 11 Intertoto Cup winners that enter the UEFA Cup in the 2nd qualifying round. As that cup isn't included in this game and would be hard to squeeze in or implement, the 11 winners are drawn randomly.-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>11</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -1151,4 +1151,4 @@
<neutral>1</neutral>
</cup_round>
</cup_rounds>
</cup>
</cup>

View File

@ -378,8 +378,8 @@
<choose_team_sid>switzerland1</choose_team_sid>
<number_of_teams>1</number_of_teams>
<!--here the representative of Liechtenstein, playing in the Swiss league since there's no national league in L. The id below points to its place in league_switzerland1 file among the ten teams.-->
<start_idx>10</start_idx>
<end_idx>10</end_idx>
<!--<start_idx>10</start_idx>-->
<!--<end_idx>10</end_idx>-->
<randomly>1</randomly>
<generate>1</generate>
</choose_team>
@ -642,7 +642,7 @@
</choose_team>
<choose_team>
<choose_team_sid>san_marino1</choose_team_sid>
<choose_team_sid>san_marino_group_a san_marino_group_b</choose_team_sid>
#the national cup winner here.
<number_of_teams>1</number_of_teams>
<!--<start_idx>2</start_idx>-->
@ -672,7 +672,7 @@
<choose_team>
<!--this entry includes the 3 Fair Play winners awarded by the UEFA which begin in the first qualifying round. Since the criteria are impossible to implement here, the teams are drawn randomly-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>3</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -846,7 +846,7 @@
<choose_team>
<!--this represents the 11 Intertoto Cup winners that enter the UEFA Cup in the 2nd qualifying round. As that cup isn't included in this game and would be hard to squeeze in or implement, the 11 winners are drawn randomly.-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>11</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -1157,4 +1157,4 @@
<neutral>1</neutral>
</cup_round>
</cup_rounds>
</cup>
</cup>

View File

@ -378,8 +378,8 @@
<choose_team_sid>switzerland1</choose_team_sid>
<number_of_teams>1</number_of_teams>
<!--here the representative of Liechtenstein, playing in the Swiss league since there's no national league in L. The id below points to its place in league_switzerland1 file among the ten teams.-->
<start_idx>10</start_idx>
<end_idx>10</end_idx>
<!--<start_idx>10</start_idx>-->
<!--<end_idx>10</end_idx>-->
<randomly>1</randomly>
<generate>1</generate>
</choose_team>
@ -642,7 +642,7 @@
</choose_team>
<choose_team>
<choose_team_sid>san_marino1</choose_team_sid>
<choose_team_sid>san_marino_group_a san_marino_group_b</choose_team_sid>
#the national cup winner here.
<number_of_teams>1</number_of_teams>
<!--<start_idx>2</start_idx>-->
@ -672,7 +672,7 @@
<choose_team>
<!--this entry includes the 3 Fair Play winners awarded by the UEFA which begin in the first qualifying round. Since the criteria are impossible to implement here, the teams are drawn randomly-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>3</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -853,7 +853,7 @@
<choose_team>
<!--this represents the 11 Intertoto Cup winners that enter the UEFA Cup in the 2nd qualifying round. As that cup isn't included in this game and would be hard to squeeze in or implement, the 11 winners are drawn randomly.-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>11</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -1158,4 +1158,4 @@
<neutral>1</neutral>
</cup_round>
</cup_rounds>
</cup>
</cup>

View File

@ -384,8 +384,8 @@
<choose_team_sid>switzerland1</choose_team_sid>
<number_of_teams>1</number_of_teams>
<!--here the representative of Liechtenstein, playing in the Swiss league since there's no national league in L. The id below points to its place in league_switzerland1 file among the ten teams.-->
<start_idx>10</start_idx>
<end_idx>10</end_idx>
<!--<start_idx>10</start_idx>-->
<!--<end_idx>10</end_idx>-->
<randomly>1</randomly>
<generate>1</generate>
</choose_team>
@ -648,7 +648,7 @@
</choose_team>
<choose_team>
<choose_team_sid>san_marino1</choose_team_sid>
<choose_team_sid>san_marino_group_a san_marino_group_b</choose_team_sid>
#the national cup winner here.
<number_of_teams>1</number_of_teams>
<!--<start_idx>2</start_idx>-->
@ -678,7 +678,7 @@
<choose_team>
<!--this entry includes the 3 Fair Play winners awarded by the UEFA which begin in the first qualifying round. Since the criteria are impossible to implement here, the teams are drawn randomly-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>3</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -852,7 +852,7 @@
<choose_team>
<!--this represents the 11 Intertoto Cup winners that enter the UEFA Cup in the 2nd qualifying round. As that cup isn't included in this game and would be hard to squeeze in or implement, the 11 winners are drawn randomly.-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>11</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -1157,4 +1157,4 @@
<neutral>1</neutral>
</cup_round>
</cup_rounds>
</cup>
</cup>

View File

@ -384,8 +384,8 @@
<choose_team_sid>switzerland1</choose_team_sid>
<number_of_teams>1</number_of_teams>
<!--here the representative of Liechtenstein, playing in the Swiss league since there's no national league in L. The id below points to its place in league_switzerland1 file among the ten teams.-->
<start_idx>10</start_idx>
<end_idx>10</end_idx>
<!--<start_idx>10</start_idx>-->
<!--<end_idx>10</end_idx>-->
<randomly>1</randomly>
<generate>1</generate>
</choose_team>
@ -648,7 +648,7 @@
</choose_team>
<choose_team>
<choose_team_sid>san_marino1</choose_team_sid>
<choose_team_sid>san_marino_group_a san_marino_group_b</choose_team_sid>
#the national cup winner here.
<number_of_teams>1</number_of_teams>
<!--<start_idx>2</start_idx>-->
@ -678,7 +678,7 @@
<choose_team>
<!--this entry includes the 3 Fair Play winners awarded by the UEFA which begin in the first qualifying round. Since the criteria are impossible to implement here, the teams are drawn randomly-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>3</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -859,7 +859,7 @@
<choose_team>
<!--this represents the 11 Intertoto Cup winners that enter the UEFA Cup in the 2nd qualifying round. As that cup isn't included in this game and would be hard to squeeze in or implement, the 11 winners are drawn randomly.-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>11</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -1164,4 +1164,4 @@
<neutral>1</neutral>
</cup_round>
</cup_rounds>
</cup>
</cup>

View File

@ -391,8 +391,8 @@
<choose_team_sid>switzerland1</choose_team_sid>
<number_of_teams>1</number_of_teams>
<!--here the representative of Liechtenstein, playing in the Swiss league since there's no national league in L. The id below points to its place in league_switzerland1 file among the ten teams.-->
<start_idx>10</start_idx>
<end_idx>10</end_idx>
<!--<start_idx>10</start_idx>-->
<!--<end_idx>10</end_idx>-->
<randomly>1</randomly>
<generate>1</generate>
</choose_team>
@ -655,7 +655,7 @@
</choose_team>
<choose_team>
<choose_team_sid>san_marino1</choose_team_sid>
<choose_team_sid>san_marino_group_a san_marino_group_b</choose_team_sid>
#the national cup winner here.
<number_of_teams>1</number_of_teams>
<!--<start_idx>2</start_idx>-->
@ -685,7 +685,7 @@
<choose_team>
<!--this entry includes the 3 Fair Play winners awarded by the UEFA which begin in the first qualifying round. Since the criteria are impossible to implement here, the teams are drawn randomly-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>3</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -853,7 +853,7 @@
<choose_team>
<!--this represents the 11 Intertoto Cup winners that enter the UEFA Cup in the 2nd qualifying round. As that cup isn't included in this game and would be hard to squeeze in or implement, the 11 winners are drawn randomly.-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>11</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -1158,4 +1158,4 @@
<neutral>1</neutral>
</cup_round>
</cup_rounds>
</cup>
</cup>

View File

@ -378,8 +378,8 @@
<choose_team_sid>switzerland1</choose_team_sid>
<number_of_teams>1</number_of_teams>
<!--here the representative of Liechtenstein, playing in the Swiss league since there's no national league in L. The id below points to its place in league_switzerland1 file among the ten teams.-->
<start_idx>10</start_idx>
<end_idx>10</end_idx>
<!--<start_idx>10</start_idx>-->
<!--<end_idx>10</end_idx>-->
<randomly>1</randomly>
<generate>1</generate>
</choose_team>
@ -642,7 +642,7 @@
</choose_team>
<choose_team>
<choose_team_sid>san_marino1</choose_team_sid>
<choose_team_sid>san_marino_group_a san_marino_group_b</choose_team_sid>
#the national cup winner here.
<number_of_teams>1</number_of_teams>
<!--<start_idx>2</start_idx>-->
@ -672,7 +672,7 @@
<choose_team>
<!--this entry includes the 3 Fair Play winners awarded by the UEFA which begin in the first qualifying round. Since the criteria are impossible to implement here, the teams are drawn randomly-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>3</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -840,7 +840,7 @@
<choose_team>
<!--this represents the 11 Intertoto Cup winners that enter the UEFA Cup in the 2nd qualifying round. As that cup isn't included in this game and would be hard to squeeze in or implement, the 11 winners are drawn randomly.-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>11</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -1165,4 +1165,4 @@
<neutral>1</neutral>
</cup_round>
</cup_rounds>
</cup>
</cup>

View File

@ -378,8 +378,8 @@
<choose_team_sid>switzerland1</choose_team_sid>
<number_of_teams>1</number_of_teams>
<!--here the representative of Liechtenstein, playing in the Swiss league since there's no national league in L. The id below points to its place in league_switzerland1 file among the ten teams.-->
<start_idx>10</start_idx>
<end_idx>10</end_idx>
<!--<start_idx>10</start_idx>-->
<!--<end_idx>10</end_idx>-->
<randomly>1</randomly>
<generate>1</generate>
</choose_team>
@ -642,7 +642,7 @@
</choose_team>
<choose_team>
<choose_team_sid>san_marino1</choose_team_sid>
<choose_team_sid>san_marino_group_a san_marino_group_b</choose_team_sid>
#the national cup winner here.
<number_of_teams>1</number_of_teams>
<!--<start_idx>2</start_idx>-->
@ -672,7 +672,7 @@
<choose_team>
<!--this entry includes the 3 Fair Play winners awarded by the UEFA which begin in the first qualifying round. Since the criteria are impossible to implement here, the teams are drawn randomly-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>3</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -840,7 +840,7 @@
<choose_team>
<!--this represents the 11 Intertoto Cup winners that enter the UEFA Cup in the 2nd qualifying round. As that cup isn't included in this game and would be hard to squeeze in or implement, the 11 winners are drawn randomly.-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>11</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -1165,4 +1165,4 @@
<neutral>1</neutral>
</cup_round>
</cup_rounds>
</cup>
</cup>

View File

@ -378,8 +378,8 @@
<choose_team_sid>switzerland1</choose_team_sid>
<number_of_teams>1</number_of_teams>
<!--here the representative of Liechtenstein, playing in the Swiss league since there's no national league in L. The id below points to its place in league_switzerland1 file among the ten teams.-->
<start_idx>10</start_idx>
<end_idx>10</end_idx>
<!--<start_idx>10</start_idx>-->
<!--<end_idx>10</end_idx>-->
<randomly>1</randomly>
<generate>1</generate>
</choose_team>
@ -642,7 +642,7 @@
</choose_team>
<choose_team>
<choose_team_sid>san_marino1</choose_team_sid>
<choose_team_sid>san_marino_group_a san_marino_group_b</choose_team_sid>
#the national cup winner here.
<number_of_teams>1</number_of_teams>
<!--<start_idx>2</start_idx>-->
@ -672,7 +672,7 @@
<choose_team>
<!--this entry includes the 3 Fair Play winners awarded by the UEFA which begin in the first qualifying round. Since the criteria are impossible to implement here, the teams are drawn randomly-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_bserbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>3</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -840,7 +840,7 @@
<choose_team>
<!--this represents the 11 Intertoto Cup winners that enter the UEFA Cup in the 2nd qualifying round. As that cup isn't included in this game and would be hard to squeeze in or implement, the 11 winners are drawn randomly.-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>11</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -1158,4 +1158,4 @@
<neutral>1</neutral>
</cup_round>
</cup_rounds>
</cup>
</cup>

View File

@ -378,8 +378,8 @@
<choose_team_sid>switzerland1</choose_team_sid>
<number_of_teams>1</number_of_teams>
<!--here the representative of Liechtenstein, playing in the Swiss league since there's no national league in L. The id below points to its place in league_switzerland1 file among the ten teams.-->
<start_idx>10</start_idx>
<end_idx>10</end_idx>
<!--<start_idx>10</start_idx>-->
<!--<end_idx>10</end_idx>-->
<randomly>1</randomly>
<generate>1</generate>
</choose_team>
@ -642,7 +642,7 @@
</choose_team>
<choose_team>
<choose_team_sid>san_marino1</choose_team_sid>
<choose_team_sid>san_marino_group_a san_marino_group_b</choose_team_sid>
#the national cup winner here.
<number_of_teams>1</number_of_teams>
<!--<start_idx>2</start_idx>-->
@ -672,7 +672,7 @@
<choose_team>
<!--this entry includes the 3 Fair Play winners awarded by the UEFA which begin in the first qualifying round. Since the criteria are impossible to implement here, the teams are drawn randomly-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>3</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -839,7 +839,7 @@
<choose_team>
<!--this represents the 11 Intertoto Cup winners that enter the UEFA Cup in the 2nd qualifying round. As that cup isn't included in this game and would be hard to squeeze in or implement, the 11 winners are drawn randomly.-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>11</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -1157,4 +1157,4 @@
<neutral>1</neutral>
</cup_round>
</cup_rounds>
</cup>
</cup>

View File

@ -378,8 +378,8 @@
<choose_team_sid>switzerland1</choose_team_sid>
<number_of_teams>1</number_of_teams>
<!--here the representative of Liechtenstein, playing in the Swiss league since there's no national league in L. The id below points to its place in league_switzerland1 file among the ten teams.-->
<start_idx>10</start_idx>
<end_idx>10</end_idx>
<!--<start_idx>10</start_idx>-->
<!--<end_idx>10</end_idx>-->
<randomly>1</randomly>
<generate>1</generate>
</choose_team>
@ -642,7 +642,7 @@
</choose_team>
<choose_team>
<choose_team_sid>san_marino1</choose_team_sid>
<choose_team_sid>san_marino_group_a san_marino_group_b</choose_team_sid>
#the national cup winner here.
<number_of_teams>1</number_of_teams>
<!--<start_idx>2</start_idx>-->
@ -672,7 +672,7 @@
<choose_team>
<!--this entry includes the 3 Fair Play winners awarded by the UEFA which begin in the first qualifying round. Since the criteria are impossible to implement here, the teams are drawn randomly-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>3</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -840,7 +840,7 @@
<choose_team>
<!--this represents the 11 Intertoto Cup winners that enter the UEFA Cup in the 2nd qualifying round. As that cup isn't included in this game and would be hard to squeeze in or implement, the 11 winners are drawn randomly.-->
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<choose_team_sid>albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a san_marino_group_b serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1</choose_team_sid>
<number_of_teams>11</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>
@ -1158,4 +1158,4 @@
<neutral>1</neutral>
</cup_round>
</cup_rounds>
</cup>
</cup>