Hi Gene. Sure, here's the format:
<player_name><tab><current_hop><tab><highest_hop_started><tab><last_time_hop_completed><tab><time_hop_list_first_completed>
The time values are in
Unix time format, or in other words, number of seconds since Jan. 1, 1970.
On Unix/Linux systems, type
date +%s to get the current time in Unix time (ex. output: 1407246189).
Or to convert a specific date/time to Unix time, type:
date -d '12/31/2013 23:59:59' +%s (outputs: 1388555999)
Or to convert from Unix time back to a local time/date string, type:
date -d '@1388555999' (outputs: Tue Dec 31 23:59:59 CST 2013).
Example: Bill is currently on hop 10, which is also the highest hop he's started. He completed hop 9 at 12/31/2013 23:59:59. He has never completed the full hop list.
Bill<tab>10<tab>10<tab>1388555999<tab>0Example: Bill finished hop 11 at 12/31/2013 23:59:59. He then used a chat command to manually position himself back at hop 10, where he is currently. He has never completed the full hop list.
Bill<tab>10<tab>11<tab>1388555999<tab>0Example: Bill is currently on hop 10 of a list with 20 hops total. He completed hop 9 at 12/31/2013 23:59:59. He finished the entire hop list once before at 11/30/2013 20:00:00.
Bill<tab>10<tab>20<tab>1388555999<tab>1385863200Let me know if you need more info.
Russell