OOTP Developments Forums

OOTP Developments Forums (https://forums.ootpdevelopments.com//index.php)
-   OOTP Mods - Schedules (https://forums.ootpdevelopments.com//forumdisplay.php?f=3632)
-   -   Quasi-NFL hybrid schedule request (https://forums.ootpdevelopments.com//showthread.php?t=306049)

jpeters1734 08-18-2019 11:46 PM

Quasi-NFL hybrid schedule request
 
I am hoping someone can help me out with this request. I am creating an NFL style structure with 32 teams/2 SL/4D/4T for 160 games.

An NFL team plays 16 games with 2 against each member in their division, 1 against every member in another division in their conference, 1 against every member in a division from the other conference, and 1 game against a member in each of the other divisions within your conference.

I'd like to keep the same structure except multiplied by 10.

For this schedule, I'd like to have :

- 5 game series with two off days after each series. That should make for 32 game weeks.(160 games)
- Each team should play 4 series, 2H/2A, against the 3 other teams in their division(60 games)
- 2 series, 1H/1A, against each member of a division within their subleague and one division from the other subleague(80 games)
- 2 series, 1H/1A, against a team from each division(other than the ones from before) within its subleague (20 games)

The divisions should rotate every year, but I'm not sure how ootp handles that. I would want an all-star game but not until after the regular season.

Huge thanks to anyone that can do this

bwburke94 08-22-2019 01:43 PM

An ASG after the regular season is iffy to deal with, because of its effect on the postseason schedule.

Anyway, this can be done trivially by editing the 2011 NFL schedule and removing the bye week. (It has to be specifically 2011 because no other season's bye week layout works out right.) I'll get to work on it.

bwburke94 08-27-2019 08:21 PM

Complication with getting the schedule rotation to work, as in-conference games can't rotate properly.

bwburke94 08-28-2019 12:44 AM

1 Attachment(s)
Early beta version of the year 1 schedule (2011 equivalent)

jpeters1734 09-01-2019 06:46 PM

Quote:

Originally Posted by bwburke94 (Post 4531059)
Early beta version of the year 1 schedule (2011 equivalent)

The schedule looks great!! But as you said, it's not rotating at all. Thank you very much for working on this!

Ruwisc 09-01-2019 08:49 PM

Is it critical that the schedule be exactly a doubled version of an NFL schedule? It seems more sensible to have every team play all 12 of their subleague opponents once, and 8 interleague opponents once, instead of playing 6 of 12 subleague opponents and 4 interleague opponents twice each. Then you wouldn't have to worry about rotation nearly as much.

gmo 09-02-2019 02:21 PM

1 Attachment(s)
This was an opportunity to work on rotation/shuffling, so I went for it whole hog.
Code:

#
# 32 team schedule, 160 games
# Designed for the following configuration:
# 2 subleagues, each with 4 division of 4 teams
#
#
# 20 games against 3 other teams in division (10H/10A)
# 10 games against 4 teams in one other division in subleague (5H/5A)
# 10 games against 1 team in each of other two divisions in subleague (5H/5A)
# 10 games against 4 teams in one other division in other subleague (5H/5A)
#
#
# Total of 48 schedules in this family, designated with "01" through "48"
# Family is in NFL schedule style that allows rotation through...
# * other league divisions against whom play all 4 teams (3-year cycle)
# * other interleague divisions against whom play all 4 teams (4-year cycle)
# There is also rotation of which single teams played interdivision
#
# Always play the same type of opponent at same time during schedule
# E.g., season begins with weeks of division, then interdivision, then interleague
# And season always ends with two weeks of division games
#
# Over totality of 48 schedules...
# 960 games against 3 other teams in division (480H/480A)
# 240 games against 12 other teams in division (120H/120A)
# 120 games against 16 other teams in division (60H/60A)
#
#
# All games are in 5-games series spanning Wed-Sun
# Mon & Tue always offday for all team
#
# Homestands and roadtrips as long as 15 games
#
# All game times set at 7:05pm
#
# Season begins first Wednesday of April
# Season ends early/mid-November
# Season spans 222 days
#
# No All-Star Game set
#
# Built 2019-09-02
#


jpeters1734 09-05-2019 08:40 AM

Quote:

Originally Posted by gmo (Post 4532863)
This was an opportunity to work on rotation/shuffling, so I went for it whole hog.
Code:

#
# 32 team schedule, 160 games
# Designed for the following configuration:
# 2 subleagues, each with 4 division of 4 teams
#
#
# 20 games against 3 other teams in division (10H/10A)
# 10 games against 4 teams in one other division in subleague (5H/5A)
# 10 games against 1 team in each of other two divisions in subleague (5H/5A)
# 10 games against 4 teams in one other division in other subleague (5H/5A)
#
#
# Total of 48 schedules in this family, designated with "01" through "48"
# Family is in NFL schedule style that allows rotation through...
# * other league divisions against whom play all 4 teams (3-year cycle)
# * other interleague divisions against whom play all 4 teams (4-year cycle)
# There is also rotation of which single teams played interdivision
#
# Always play the same type of opponent at same time during schedule
# E.g., season begins with weeks of division, then interdivision, then interleague
# And season always ends with two weeks of division games
#
# Over totality of 48 schedules...
# 960 games against 3 other teams in division (480H/480A)
# 240 games against 12 other teams in division (120H/120A)
# 120 games against 16 other teams in division (60H/60A)
#
#
# All games are in 5-games series spanning Wed-Sun
# Mon & Tue always offday for all team
#
# Homestands and roadtrips as long as 15 games
#
# All game times set at 7:05pm
#
# Season begins first Wednesday of April
# Season ends early/mid-November
# Season spans 222 days
#
# No All-Star Game set
#
# Built 2019-09-02
#


That is amazing!! Thank you so much for that!

There's 48 files, I assume each year I'd need to import the next one down? Is there a way to have it import automatically? Again, this is great!

bwburke94 09-07-2019 04:16 PM

The schedules should rotate automatically.

jpeters1734 09-09-2019 11:14 PM

Quote:

Originally Posted by bwburke94 (Post 4534326)
The schedules should rotate automatically.

How exactly would I set it up to auto rotate?


All times are GMT -4. The time now is 08:57 AM.

Powered by vBulletin® Version 3.8.10
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Copyright © 2020 Out of the Park Developments