I don't want to tell you or anybody else what they can or can't do on a videogame, but don't you think it ruins it for other people a little bit to put three gamertags in the top 100 of the leaderboard? (It doesn't really affect me personally because I am nowhere near the top 100)
I mean, it's harmless isn't it? The prize is percentage based, not placement based. If he was putting 3 people out of gold then you'd have more reason to be concerned but there's no prizes for top 100.
Top 10 I can understand being miffed at but that's it.
I guess it would depend on your perspective and mindset.
I can understand how you might think it is only important if it affects the Top 10, as by my records you have not been in the top 10 in GT7, but have been in the top 100 4 times.
SELECT a.evt_name, b.psn_id, c.psn_result from events a JOIN evt_results c ON a.evt_id=c.evt_id JOIN all_contestants b on c.uuid=b.uuid WHERE b.psn_id='Nebu-72' and c.psn_result < 100
evt_name | psn_id | psn_result
----------------------------------------------------------------------------+---------+------------
Daytona Road Course - Porsche 911 GT3 RS (992) 22 | Nebu-72 | 83
Watkins Glen Short Course - Alpine A110 Première Édition 17 | Nebu-72 | 46
Grand Valley - South - Wicked Fabrication GT 51 | Nebu-72 | 88
Brands Hatch Grand Prix Circuit - Genesis G70 3.3T AWD Prestige Package 22 | Nebu-72 | 59
(4 rows)
Whereas for someone who has never been in the top 100 it might be very important.
SELECT min(c.psn_result) from events a JOIN evt_results c ON a.evt_id=c.evt_id JOIN all_contestants b on c.uuid=b.uuid WHERE b.psn_id= 'SPDN Stefano' ;
------
1026
And to someone like me who suffers from 'imposter syndrome' ( as diagnosed by
@crome )I can understand how it might be important to validate your time with multiple results.
As usual YMMV.
Ken