Front Office Football Central  

Go Back   Front Office Football Central > Main Forums > FOF9, FOF8, and TCY Discussion
Register FAQ Members List Calendar Mark Forums Read Statistics

Reply
 
Thread Tools
Old 01-13-2008, 09:35 AM   #1
Ben E Lou
Morgado's Favorite Forum Fascist
 
Join Date: Oct 2000
Location: Greensboro, NC
Favorite Unique MP League Features?

I was just thinking that this might be a good way to improve MP leagues across the board--at least those that have non-creative people like me in them. Some things are harder or more time-consuming to implement than others, but sometimes the issue isn't as much time/difficulty as it is just not ever thinking to do it. I guess what I'm saying is that it's not hard to think of features like custom player/stats pages, betting, mock drafts and power ratings. But I know for a fact that there are neat features in some MP leagues that haven't even been thought about in most other leagues. This thread is an attempt to "cross-pollenate" a bit--something that I think might make all leagues a bit stronger. So the question I'm posing is this:

What are the enjoyable features you've seen in your MP league(s) that other leagues may not have thought to do?

This isn't the place to show off how much cooler your player stats pages are than the next league's, and I'm not asking folks to share pieces of your custom code to do stuff (although I think it would be cool if that were done more.) My hope for this thread is that at least one person in every league who currently doesn't do much besides submitting exports and posting might see something here and say "Hey, I can do that for my league."


__________________
The media don't understand the kinds of problems and pressures 54 million come wit'!


Last edited by Ben E Lou : 01-13-2008 at 10:59 AM.
Ben E Lou is offline   Reply With Quote
Old 01-13-2008, 09:37 AM   #2
Ben E Lou
Morgado's Favorite Forum Fascist
 
Join Date: Oct 2000
Location: Greensboro, NC
I'll get us started with some that I enjoy--one in a league that I'm not in, but I think the feature is very cool.


GAME ANALYSIS (RDFL)

LEONARD'S LOSERS (WOOF)

SECRET SANTA (FOFL)

VULTURE/CORRESPONDENT CHALLENGE (IHOF)





__________________
The media don't understand the kinds of problems and pressures 54 million come wit'!

Last edited by Ben E Lou : 01-13-2008 at 09:37 AM.
Ben E Lou is offline   Reply With Quote
Old 01-13-2008, 10:47 AM   #3
Dutch
"Dutch"
 
Join Date: Oct 2000
Location: Tampa, FL
VPI's IHOF and GEFL player picture upload capability was my all-time favorite feature. It was so simple and easy, anybody could get involved...even me!
Dutch is offline   Reply With Quote
Old 01-13-2008, 10:48 AM   #4
Dutch
"Dutch"
 
Join Date: Oct 2000
Location: Tampa, FL
VPI97's Draft Utility (which I think is used in a lot of places now) has saved many a drafts from becoming bogged down with excruciating delays.
Dutch is offline   Reply With Quote
Old 01-13-2008, 10:51 AM   #5
Dutch
"Dutch"
 
Join Date: Oct 2000
Location: Tampa, FL
Knowing how I am (I'm rather time-crunched at the most inopportune times) and love standardization, I've always searched for a method to paint a picture/tell a story about stats or history that requires little extra input from me.

Greg's utilities that are coming to frutation now are probably what I've been looking for, but haven't really messed with them, beyond what I've seen Skydog post at leagues. I'm very impressed by the ease of use and simplicity...yet, the greater unfolding storyline that these enhancements provide to FOF are incredible.

Last edited by Dutch : 01-13-2008 at 10:52 AM.
Dutch is offline   Reply With Quote
Old 01-13-2008, 02:43 PM   #6
marcmoustache
H.S. Freshman Team
 
Join Date: Jun 2005
Quote:
Originally Posted by SkyDog View Post
I'll get us started with some that I enjoy--one in a league that I'm not in, but I think the feature is very cool.


GAME ANALYSIS (RDFL)[color=Blue]

Thank you.
marcmoustache is offline   Reply With Quote
Old 01-13-2008, 02:50 PM   #7
gottimd
Dearly Missed
(9/25/77-12/23/08)
 
Join Date: Nov 2003
Location: DC Suburbs
I don't have the HTML or SQL writing capabilities as most report designers in the other MP leagues so mine essentially developed via excel:

http://www.naflsim.com/webpages/Gamepreviews.htm
http://www.naflsim.com/webpages/GameDetails.htm
http://www.naflsim.com/webpages/NAFL-Standings.htm

I wish more designers released their projects/codes to the rest of us. I look at the other MP Leages from time to time to see what other reports I can develop as well, and I generally throw out the question every sim year on our message board of what reports, if any, an GM's would like to see.
__________________
NAFL New Orleans Saints GM/Co-Commish
MP Career Record: 114-85
NAFL Super Bowl XI Champs
In memory of Gavin Anthony: 7/22/08-7/26/08

Last edited by gottimd : 01-13-2008 at 02:50 PM.
gottimd is offline   Reply With Quote
Old 01-13-2008, 02:58 PM   #8
JetsIn06
Pro Rookie
 
Join Date: Dec 2006
Location: Rahway, NJ
This could be obvious, but I personally love the Lounge at FOFL. Having a chat room really helps during down-time.

For example, at the WOOF, there will be times where I go to the forums and see 4 or 5 people on there, but with no threads to read, I'll leave.
JetsIn06 is offline   Reply With Quote
Old 01-14-2008, 02:44 AM   #9
Vinatieri for Prez
College Starter
 
Join Date: Feb 2003
Location: Seattle
Quote:
Originally Posted by SkyDog View Post
I'll get us started with some that I enjoy--one in a league that I'm not in, but I think the feature is very cool.


GAME ANALYSIS (RDFL)

LEONARD'S LOSERS (WOOF)

SECRET SANTA (FOFL)

VULTURE/CORRESPONDENT CHALLENGE (IHOF)






Can someone remind me again how do I pull out info like the game analysis in RDFL. Extractor I presume.
Vinatieri for Prez is offline   Reply With Quote
Old 01-14-2008, 05:52 AM   #10
marcmoustache
H.S. Freshman Team
 
Join Date: Jun 2005
Quote:
Originally Posted by Vinatieri for Prez View Post
Can someone remind me again how do I pull out info like the game analysis in RDFL. Extractor I presume.

The info I used here is all from the gamelogs. But it's proprietary at the moment, as it's written in php and not something neat like greg's apps.

Basically I looked at each line and what data was in there, and captured it, such as:

Code:
// formations // // i formation if(strpos($logline,"I formation")){$form=1;} if(strpos($logline,"I formation with two tight ends")){$form=2;} if(strpos($logline,"I formation, with the second wideout in the slot")){$form=3;} // pro if(strpos($logline,"Pro formation")){$form=4;} if(strpos($logline,"Pro formation with two tight ends")){$form=4;} if(strpos($logline,"Pro formation, with the second receiver in the slot")){$form=6;} // weak if(strpos($logline,"Weak formation")){$form=7;} if(strpos($logline,"Weak formation with two tight ends")){$form=8;} if(strpos($logline,"Waek formation with three wideouts")){$form=9;} // strong if(strpos($logline,"Strong formation")){$form=10;} if(strpos($logline,"Strong formation with two tight ends")){$form=11;} if(strpos($logline,"Strong formation with three wideouts")){$form=12;} // single back if(strpos($logline,"Single-Back formation")){$form=13;} if(strpos($logline,"Single-Back formation with two tight ends")){$form=14;} if(strpos($logline,"Single-Back formation with trips receivers")){$form=15;} if(strpos($logline,"Single-Back formation with four receivers")){$form=16;} // 5 wr if(strpos($logline,"Five-Receiver Spread formation")){$form=17;} // strength if(strpos($logline,"strength is left")){$strength=0;} if(strpos($logline,"strength is right")){$strength=1;}

I then process lots of other bits as well.

However, all this data and more exists in the solevision file, which thanks to celeval I now have the format of and will be trying to write something that parses their data, but this crude method works well for now.

Marc.

Last edited by marcmoustache : 01-14-2008 at 05:53 AM.
marcmoustache is offline   Reply With Quote
Old 01-14-2008, 08:34 AM   #11
Subby
lolzcat
 
Join Date: Oct 2000
Location: sans pants
cuervo72 has created some kickass stuff for FOFL - "Where Immersion Lives"

Historical, Sortable Combine Report

Historical Draft Report

Historical Awards Tracker

Hall of Champions

Affinity Search Tool


Team portals

Individual and Team Statistical Leaders (sortable)

The last two things might be common to other leagues, but I like the way cuervo does them so I am going to share.
__________________
Superman was flying around and saw Wonder Woman getting a tan in the nude on her balcony. Superman said I going to hit that real fast. So he flys down toward Wonder Woman to hit it and their is a loud scream. The Invincible Man scream what just hit me in the ass!!!!!

I do shit, I take pictures, I write about it: chrisshue.com
Subby is offline   Reply With Quote
Old 01-14-2008, 10:52 PM   #12
Vinatieri for Prez
College Starter
 
Join Date: Feb 2003
Location: Seattle
Thanks, MM. It would be way beyond my capabilities to do that. I wait with baited breath for a simple app that could do that. Scouting would be awesome with that.
Vinatieri for Prez is offline   Reply With Quote
Old 01-16-2008, 05:46 PM   #13
stretch
n00b
 
Join Date: May 2007
Quote:
Originally Posted by Subby View Post
cuervo72 has created some kickass stuff for FOFL - "Where Immersion Lives"

Historical, Sortable Combine Report

Historical Draft Report

Historical Awards Tracker

Hall of Champions

Affinity Search Tool


Team portals

Individual and Team Statistical Leaders (sortable)

The last two things might be common to other leagues, but I like the way cuervo does them so I am going to share.

Oh, these are just incredible! I'd love to learn how he parses the data out and collects it like this.
stretch is offline   Reply With Quote
Old 01-17-2008, 06:16 AM   #14
Subby
lolzcat
 
Join Date: Oct 2000
Location: sans pants
Quote:
Originally Posted by stretch View Post
Oh, these are just incredible! I'd love to learn how he parses the data out and collects it like this.
He uses Stelmack's Interrogator. There is an entire thread about it in this forum - Interrogator is part of his FOF2K7 Utility Suite - it also includes good stuff like Extractor and Draft Analyzer...

The cool thing about cuervo (don't tell him this) is that not only can he program stuff pretty well, he has a fantastic eye for design...something most programmers don't seem to have. So the FOFL site is both functional and pretty.
__________________
Superman was flying around and saw Wonder Woman getting a tan in the nude on her balcony. Superman said I going to hit that real fast. So he flys down toward Wonder Woman to hit it and their is a loud scream. The Invincible Man scream what just hit me in the ass!!!!!

I do shit, I take pictures, I write about it: chrisshue.com
Subby is offline   Reply With Quote
Old 01-17-2008, 06:16 AM   #15
Subby
lolzcat
 
Join Date: Oct 2000
Location: sans pants
dola

Like me.
__________________
Superman was flying around and saw Wonder Woman getting a tan in the nude on her balcony. Superman said I going to hit that real fast. So he flys down toward Wonder Woman to hit it and their is a loud scream. The Invincible Man scream what just hit me in the ass!!!!!

I do shit, I take pictures, I write about it: chrisshue.com
Subby is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is On
Forum Jump


All times are GMT -5. The time now is 03:06 AM.



Powered by vBulletin Version 3.6.0
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.