Who doesn't wanna see how many hours/days of their life they've wasted on the server? https://www.spigotmc.org/resources/bungeeonlinetime.795/
Clearly not an expert. :b It only logs the time you logged on and logged off and saves that to a database. Doesn't sound very laggy to me.
I was thinking more the /onlinetime command finding your data and the /onlinetime top finding the top 10. But then again there aren't many players so not much to look through.
A properly written plugin would calculate online-time in memory long before you issue the command. Assuming this plugin is properly written it wouldn't be laggy. Any plugin can be laggy when crappily written.
If this doesn't go through, I wrote a simple macro that does this, a while back. Looks like this: http://i.imgur.com/Lh10PH3.png Put this in the onJoinGame Event. Spoiler: Code If you already have a macro in this event that loops (like PMC_ToolSwitch.txt, if you're using Pi's macros), then just put this code before the loop, like this: http://i.imgur.com/qsCHJEY.png EXEC(WHATEVER_YOU_NAMED_THE_FILE.txt,"ECC Gameplay Timer") Code: $${ #calc = (@#totaleccminutes / 60) LOG(&2[&aECC Timer&2] &6Timer Started: &c%#calc% &6hours total!) DO; WAIT(60) @#totaleccminutes = @#totaleccminutes + 1 LOOP(); }$$ If anyone's actually interested enough in it, I could have it check to make sure it's on ECC before starting the timer, or have times for different servers if you play on more that one. I could throw in a command to tell you your total time and current session time, as well.