Hey guys,
I got KOF 99 (green case) thrown in when I bought my Omega this weekend. Since I already have one, I figure I may as well let someone get some play out of it instead of keeping a second one around or trying to get lunch money for it.
I'll just ask to throw me some money to cover shipping. If a few people are interested, I'll just pick one at the end of the week.
Please don't ask if you're fresh off the boat unless you've at least made a solid effort to contribute.
EDIT:
Final list in order of response:
Neodogg
Montatez
Tanooki
c0nn0r
wingzrow
sr20det510
johhnnyD14
mmsadda
BLEAGH
ysselcneogeo
aaronjmill
I'm going to be using a simple randomizer that I use for fantasy football draft order. Code is below if anyone's interested. I'll put the result at the end of the thread. I'll probably post the result in an hour or so.
Good luck!
public void setDraftOrder()
{
System.Random _random = new System.Random();
int n = teamsList.Count;
for (int i = 0; i < n; i++)
{
int r = i + (int)(_random.NextDouble() * (n - i));
tempGameObject = teamsList[r];
teamsList[r] = teamsList;
teamsList = tempGameObject;
}
foreach (GameObject team in teamsList)
{
Debug.Log(team.name);
}
}
I got KOF 99 (green case) thrown in when I bought my Omega this weekend. Since I already have one, I figure I may as well let someone get some play out of it instead of keeping a second one around or trying to get lunch money for it.
I'll just ask to throw me some money to cover shipping. If a few people are interested, I'll just pick one at the end of the week.
Please don't ask if you're fresh off the boat unless you've at least made a solid effort to contribute.
EDIT:
Final list in order of response:
Neodogg
Montatez
Tanooki
c0nn0r
wingzrow
sr20det510
johhnnyD14
mmsadda
BLEAGH
ysselcneogeo
aaronjmill
I'm going to be using a simple randomizer that I use for fantasy football draft order. Code is below if anyone's interested. I'll put the result at the end of the thread. I'll probably post the result in an hour or so.
Good luck!
public void setDraftOrder()
{
System.Random _random = new System.Random();
int n = teamsList.Count;
for (int i = 0; i < n; i++)
{
int r = i + (int)(_random.NextDouble() * (n - i));
tempGameObject = teamsList[r];
teamsList[r] = teamsList;
teamsList = tempGameObject;
}
foreach (GameObject team in teamsList)
{
Debug.Log(team.name);
}
}
Last edited: