Hi All,
I am trying to keep some stats that are inserted into mysql db every 1 minute. The stats are set up as followes.
Name
Frag
Now this is a example of what this looks like.
(1st minute)
name player1
frag 1
name player2
frag 3
(2nd minute)
name player1
frag 3
name player2
frag 4
(3rd minute)
name player1
frag 7
name player2
frag 10
A new game started
(4th minute)
name player1
frag 0
name player2
frag 1
What I want is the highest frag from both players(7 and 10). I do not want to combine all frags to each player from every minute. I just need the last highest frag before the lowest score begins.
I this is confusing let me know and I will try harder on explaining this.
Thanks everyone