|
The date conversion is not so much a .CSV problem as it is my not taking the time necessary to figure it out.
It appears that for the game to read an entry in the player_history.txt file, the date has to be in a format like: 20070707. The CSV file holds the date as 2007-7-7. I've taken out the dashes, but that leaves me with 200777. So then I thought, I'll replace the dashes with 0's. That gives me 20070707. But what if the date is 2007-10-21? That gives me 2007010021, which isn't right at all.
So I just have to figure out how to properly format the date I pull from the .CSV file.
|